*{
	font-family: "Roboto","Helvetica Neue",Helvetica,Arial;
}
body{
	font-size: 1em;
}

/* header */
header{
	width: 100vw;
	top: 0;
	height: 50px;
	background: #2c3e50;
	position: relative;
	z-index: 10;
}
header > i{
	display: none!important;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 2%;
	margin: 1.5%;
	cursor: pointer;
	color: #fff;
}
header h1{
	margin: 0;
	padding: 10px 0 0 15px;
	position: absolute;
	font-size: 2em;
	color: #fff;
	font-weight: 300;
	font-family: Bangers, cursive;
}
header a{
	text-decoration: none;
	font-weight: 300;
	display: block;
}
header li{
	list-style: none;
}
#nav {
	text-align: center;
	z-index: 1000;
}
#nav > ul{
	padding: 0;
	margin: 0;
}
#nav > ul > li{
	display: inline-block;
}
#nav > ul > li > a{
	padding: 17px 25px;
	color: #fff;
}
#nav > ul > li > a:hover{
	color: #2980b9;
}
.dropdown{
	display: none;
	position:absolute;
	background: #fff;
	margin: 0;
	padding: 0;
	z-index: 1000;
	border-radius: 5px;
	box-shadow: 1px 1px 5px 1px #616161;
}
.dropdown li{
	display: block;
}
.dropdown a{
	padding: 10px 25px;
	color: #34495e;
}
.dropdown a:hover{
	color: #2980b9;
}
#mobile-nav{
	display: none;
	padding-bottom: 2%;
}
#mobile-nav > ul{
	margin: 0;
	padding: 0;
}
#mobile-nav a{
	padding: 1% 2%;
	color: #fff;
}

/* footer */
footer{
	
}
footer>div{
	width: 100vw;
	text-align: center;
}
footer ul{
	padding: 0;
}
footer li{
	display: inline-block;
	vertical-align: middle;
	padding: 0 1%;
	font-size: 1.5em;
}
footer a{
	text-decoration: none;
	color: #000;
}
footer a:hover{
	color: #2980b9;
}
footer p{
	font-size: 0.7em;
}


/* Media Queries */

@media only screen and (max-width: 1100px){

}

@media only screen and (max-width: 950px){
	header{
		font-size: 0.8em;
	}
	#nav{
		display: block;
	}
}

@media only screen and (max-width: 800px){
	/* header */
	header{
		height: auto;
	}
	header h1{
		display: inline-block;
		vertical-align: middle;
		margin: 0;
		padding: 0;
		position: relative;
		font-size: 3em;
	}
	header h1 > i{
		display: none!important;
	}
	header > i{
		display: inline-block!important;
		vertical-align: middle;
	}
	#nav{
		display: none;
		text-align: left;
		font-size: 1.4em;
		margin-top: 7.5px;
	}
	#nav > ul > li{
		display: block;
	}
	#nav > ul > li > a{
		padding: 20px 0 10px 20px;
		border-bottom: 1px dotted #e5e5e5;
	}
	.dropdown{
		position:relative;
		box-shadow: none;
		padding-left: 40px;
		background: inherit;
	}
	.dropdown a{
		padding: 20px 0 5px 5px;
		color: #fff;
	}
}

@media only screen and (max-width: 600px){
	header > i{
		display: inline-block!important;
		vertical-align: middle;
		font-size: 2em!important;
	}
	#mobile-nav a{
		font-size: 1.3em;
	}
}



