/*
Stylesheet: oecher-kitz.de
Version: 0.1
*/


/*--------------------------------------------------------------
	1.0 Schriften 
--------------------------------------------------------------*/


/*--------------------------------------------------------------
	2.0 Reset 
--------------------------------------------------------------*/

html, 
body {
	padding: 0px;
	margin: 0px;
	height: 100%;
}

*,
*::before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.clearfix::before,
.clearfix:after {
	content: " ";
	display: table;
	clear: both;
}

.clear {
	clear: both;
	display: block;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
	display: block;
}

a {
	outline: none;
	text-decoration: none;
	color: inherit;
}

a > img{
	border: 0;
	display: block;
}

input {
	border-radius: 0;
	-webkit-appearance: none;
}

/*--------------------------------------------------------------
	3.0 Schriftarten 
--------------------------------------------------------------*/

body {
    font-family: sans-serif;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #000;
}

/*--------------------------------------------------------------
	4.0 Layout 
--------------------------------------------------------------*/

body {
	overflow: hidden;
	background-color: #95cab0;
}

#logo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 380px;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
}

@media only screen and (max-width: 420px) {

	#logo {
		width: 80%;
	}

}