@charset "utf-8";

@font-face {
	font-family: 'hind-sili400';
	src: url('../fonts/HindSiliguri-Regular.woff2') format('woff2'),
	url('../fonts/HindSiliguri-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'hind-sili700';
	src: url('../fonts/HindSiliguri-Bold.woff2') format('woff2'),
	url('../fonts/HindSiliguri-Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'big_johnregular';
	src: url('../fonts/big_john-webfont.woff2') format('woff2'),
	url('../fonts/big_john-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'slim_joeregular';
	src: url('../fonts/slim_joe-webfont.woff2') format('woff2'),
	url('../fonts/slim_joe-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html, body{
	width: 100%;
	height: 100%;
}

body{
	background-color: #f9c026;
	font-family: 'hind-sili400', sans-serif;
	color: #000; 
	font-weight: 400;
	font-size: 20px; 
}

header{
	width: 100%;
	height: 100%;
}

footer{
	width: 100%;
	height: 100px;
	background-color: #000;
	color: #f9c026;
	position: absolute;
	bottom: -100px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer p{
	font-size: 16px;
	letter-spacing: .5px;
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

footer p a{
	display: flex;
	margin-left: 5px;
}

.header-text{
	position: absolute;
	bottom: 0;
	left: 0;
}

.header-text .intro-line{
	font-size: 2rem;
	padding-left: 10px; 
}

h1{
	font-family: 'big_johnregular';
	font-size: 10vw;
}


h2{
	font-family: 'slim_joeregular';
	font-size: 4vw;
}

a{
	text-decoration: none;
	color: #f9c026;
	line-height: inherit;
}

a:hover, a:focus, a:active{
	color: #fff;
}

.burger{
	position: absolute;
	top: 30px;
	left: 30px;
	background-color: transparent;
	border: none;
	box-shadow: none;
}

.burger:focus{
	outline: none;
}

.burger .burger-top,
.burger .burger-bottom{
	width: 45px;
	height: 4px;
	background-color: #000; 
	position: relative;
}

.burger .burger-top{
	margin-bottom: 15px;
}

.burger span{
	position: absolute;
	left: 50px;
	width: 150px;
	font-size: 16px;
	text-transform: uppercase;
	top: 1px;
}

.logo-container{
	width: 200px;
	height: 250px;
	position: absolute;
	right: 10px;
	top: 30px;
	background-image: url(../img/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media(max-width: 767px){
	.logo-container{
		height: 150px;
		background-position: right;
	}
	.header-text .intro-line{
		font-size: 3vw;
		padding-left: 5px;
	}
	.burger{
		left: 10px;
	}
}

@media(max-width: 360px){
	.logo-container{
		height: 100px;
	}
}