/* CSS Document */
@font-face{
	font-family: edoFont;
	src: url("/assets/fonts/edosz.ttf");
}

@font-face{
	font-family: futuraPT;
	src: url("/assets/fonts/Futura PT Medium.ttf");
}

html{
	max-width:1920px;
	margin-left:auto;
	margin-right:auto;
}

header h1{
	background-color: #313131;
	text-align:center;
	font-family: edoFont;
	text-shadow: 0 0 15px black;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-size: 3rem;
	margin-bottom:0;
}

header a{
	color: white;
	text-decoration: none;
	text-align:center;
}

#menu a{
	font-family:edoFont;
}

nav{
	background-color: #808080;
}

nav ul{
	display:flex;
	text-align:center;
	font-size:1.2rem;
	margin-top:0;
	padding-top:0.5rem;
	padding-bottom:0.5rem;
	padding-left:0;
	padding-right:0;
	font-family: "Edo SZ";
}

nav li{
	flex: 1;
	list-style: none;
}

nav a{
	color: white;
	transition: all 0.3s linear;
	text-shadow: 0 0 15px black;
}

nav a:hover {
	color:#313131;
	text-shadow: 0 0 15px white;
}


@media (max-width:500px){
	nav ul{
		display:block;
	}
	
	nav li{
		margin-bottom:0.5rem;
	}
}
