/* CSS Document */
body {
	background-color: black;
	overflow: hidden;
}
#navhome {
	position: fixed;
	top: 0;
	right: 0;
	padding: 10px 20px;
	height: 50px;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	font-weight: 200;
	color: white;
	cursor: pointer;
	box-sizing: inherit;
	z-index: 250;
	animation-name: shownav;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
#navhomeclose {
	position: fixed;
	top: -50px;
	right: 0;
	padding: 10px 20px;
	height: 50px;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	font-weight: 200;
	color: white;
	cursor: pointer;
	box-sizing: inherit;
	z-index: 250;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 20px;
	color: white;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 12px;
	font-weight: 200;
}
footer a {
	color: white;
}
#home-logo {
	width: 30%;
	max-width: 300px;
	min-width: 100px;
}
#home-head {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-column: auto;
	text-align: center;
	align-content: center;
	align-content: space-around;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 25px;
	font-weight: 200;
	color: white;
	z-index: 210;
	animation-name: fadein;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
#home-image {
	width: 100%;
	height: 125%;
	background-size: cover;
	opacity: 0;
	z-index: 200;
	animation-name: fadein;
	animation-duration: 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
}
#home-menu {
	position: fixed;
	top: 100%;
	width: 100%;
	height: 100%;
	display: grid;
	align-items: center;
	align-content: center;
	text-align: center;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 30px;
	font-weight: 200;
	color: white;
	/*visibility: hidden;
	opacity: 0;*/
	z-index: 220;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}
#home-menu a {
	color: white;
}
#home-menu a:hover {
	color: #928E85;
}
.home-sub-menu {
	position: fixed;
	top: 100%;
	width: 100%;
	height: 100%;
	display: grid;
	align-items: center;
	align-content: center;
	text-align: center;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 30px;
	font-weight: 200;
	color: white;
	/*visibility: hidden;
	opacity: 0;*/
	z-index: 220;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}
.home-sub-menu a {
	color: white;
}
.home-sub-menu a:hover {
	color: #928E85;
}
@media only screen and (max-width: 600px) {
	#home-head {
		font-size: 32px;
	}
}