/* -------------------- BASIC STUFF -------------------- */
html {
	min-height: 100%;
	min-width: 100%;
	margin: none;
	padding: none;
}
body {
	min-height: 100%;
	min-width: 100%;
	margin: none;
	padding: none;

	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
}
a {
	font-size: 10px;
	line-height: 10px;
	text-decoration: none;
	font-weight: 500;

	-moz-transition:all 0.2s ease;
	-webkit-transition:all 0.2s ease;
	-ms-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
a:hover {
}

/* -------------------- NAVIGATION STUFF -------------------- */

/* -------------------- FRONTPAGE-SPECIFIC -------------------- */

#ethundrede-logo{
	width: 100%;
	height: 100%;
	max-width: 20vw;
	max-height: 10vh;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#coverpic {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -200;

	background-color: #fff;
	background-position: center center;
	background-size: cover;
}
#coverpic span {display: none;}

/* -------------------- MEDIA QUERIES -------------------- */
/* --- iPhone MQ */
@media only screen and (max-width: 767px) {
	#ethundrede-logo {
		max-width: 50vw;
		max-height: 30vh;
	}
	}
/* --- iPad MQ */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
		#ethundrede-logo {
			max-width: 20vw;
			max-height: 10vh;
		}
	}
/* --- Hi-Res MQ */
@media screen and (min-width: 1025px) {
		#ethundrede-logo {
			max-width: 20vw;
			max-height: 10vh;
		}
	}
