@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Calligraffitti|Shadows+Into+Light+Two|Roboto');
/* CSS Document */

@media only screen and (min-width: 600px){
html, body, p, ul, h1{
	margin: 0;
	padding: 0;
	font-weight: normal;
}

header{
	position: relative;
	width: 100vw;
	height: 10vh;
	background-color: #252525;
	font-family: 'Calligraffitti', cursive;
}
header img{
	position: relative;
	height: 10vh;
	margin-left: 2.5vw;
	
}
/* Navigation --------------------------------*/
nav {
	position: relative;
	margin-right: 3vw; 
	float: right;
}
nav ul {
    list-style: none;
    text-align: center;
}
nav ul a {
	color: #ffffff;
}
nav ul a li {
	display: inline-block;
	width: 8vw;
	max-width: 200px;
    height: 10vh;
	line-height: 10vh;
	font-size: 2em;
	
	background-color: #252525;
	text-shadow: 0 0 0 #000000;
	transition: background-color 1s, text-shadow 0.5s;
}
nav ul a li:hover{
	background-color: #AAAAAA;
	text-shadow: 3px 2px 3px #000000;
}
.current {
	text-decoration: underline;
}
}