* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	}	
header, section, footer, img {
    display: block; 
	}
@font-face { 
	font-family: 'apercu_regular';
	src: url(apercu_regular.woff);
	}
html {
	background-color: #d2d5d8;
	height: 100%;
	}
body {
    background-color: white;
    width: 700px;
    min-height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    font-family: "apercu_regular", Helvetica, Arial, sans-serif;
    font-size: 100%; /*damit auch ältere ie's richtig rechnen*/
	}
header {
	position: relative;
	padding: 150px 0 50px 0
	}
section {
	padding-bottom: 20px;	
	}
footer {
	padding-bottom: 100px;
	}
img {
	position: absolute;
	width: 130px;
	top: 50px;
	right: 0;
	}
h1 {
	font-weight: normal;
	font-size: 2.2em;
	line-height: 1.15;
	}
h2 {
	border-top: 2px solid black;
	padding: 5px 0 15px;
	font-size: 1.2em;
	font-weight: normal;
	}
p {
	padding-bottom: 30px;
	font-size: 1.2em;
	}
.contact {
	padding-bottom: 15px;
	}
.blue {
	color: #007DCA;
	}
a:link, a:visited {
	color: #007DCA;
	text-decoration: none;
	border-bottom: #007DCA solid 1px;
	}
a:hover, a:active {
	color: black;
	text-decoration: none;
	border-bottom: none;
	}
	
@media only screen and (max-width: 768px) {
	html {
		background-color: white;
		}
	body {
	    width: auto;
	    min-width: 640px;
		} 
	}
@media only screen and (max-width: 640px) {
	body {
	    width: auto;
	    min-width: 0;
	    padding: 0 5%;
	    }
	header {
		padding: 130px 0 30px 0;
		} 
	img {
		width: 90px;
		top: 40px;
		}
	footer {
		padding-bottom: 60px;
		}		
	h1 {
		font-size: 1.8em;
		}
	h2 {
		font-size: 1em;
		}
	p {
		font-size: 1em;
		}
				
}