@charset "utf-8";

/*Allgemein*/
* {
	font-family: Dosis, Arial, Verdana, sans-serif;
}

html {
	height: 100%;
}

/* Allgemeine Responsive Klassen für Geräte */
/* Desktop */
@media 
only screen and (min-device-width : 880px), 
only screen and (min-width : 880px) {
.desktop-off, 
.tablet-on,
.phone-on {
	display: none;
}
.desktop-on, 
.tablet-off, 
.phone-off {
	display: block;
}
}
/* Tablets */
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
.tablet-off,
.desktop-on, 
.phone-on {
	display: none;
}
.tablet-on,
.desktop-off, 
.phone-off {
	display: block;
}
}
/* Mobile */
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.phone-off,
.desktop-on, 
.tablet-on
 {
	display: none;
}
.phone-on, 
.desktop-off, 
.tablet-off {
	display: block;
}
}

img#logo {
	width: 100px;
	height: auto;
	position: absolute;
	left: 50%;
	margin-left: -50px;
	top: 50%;
	margin-top: -79px;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
	img#logo {
		width: 50px;
		margin-left: -25px;
		margin-top: -39.5px;
	}
}