body {
	margin: 0;
	font-family: 'Liberation Sans', sans-serif;
	color: #FFFFFF;
}

a {
	text-decoration: none;
	color: #FFFFFF;
}

#background,
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

header {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 700px),
screen and (max-height: 500px) {
	header {
		position: relative;
		top: 0;
		left: 0;
	}
}

header h1 {
	display: inline;
	font-size: 4em;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

header nav {
	width: 100%;
}

header nav ul li,
#download ul li {
	display: inline-block;
	padding: 5px 20px;
	font-size: 1.2em;
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}

header nav ul li:not(:first-child),
#download ul li:not(:first-child) {
	border-left: 1px solid rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 600px) {
	header nav ul li,
	#download ul li {
		display: block;
	}

	header nav ul li:not(:first-child),
	#download ul li:not(:first-child) {
		border-left: none;
	}
}

header nav ul li a,
#download ul li a {
	display: block;
	padding: 5px;
	border-bottom: 1px solid transparent;
	transition-property: border-bottom-color;
	transition-duration: 0.5s;
}

header nav ul li a:hover,
#download ul li a:hover {
	border-bottom-color: rgba(255, 255, 255, 0.7);
}

#about p {
	margin: 10px auto;
	padding: 15px;
	width: 50%;
	background-color: rgba(0, 0, 0, 0.2);
	line-height: 1.5em;
	font-size: 1.3em;
}

footer {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 0.9em;
}

@media screen and (max-height: 500px) {
	footer {
		position: relative;
		margin-top: 20px;
		right: 0;
		bottom: 0;
		text-align: center;
	}
}

footer p {
	margin: 0;
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}

footer a {
	border-bottom: 1px solid transparent;
	transition-property: border-bottom-color;
	transition-duration: 0.5s;
}

footer a:hover {
	border-bottom-color: rgba(255, 255, 255, 0.7);
}

#loading-message {
	display: none;
}
