/* Reset Default CSS
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


html {
	font-size: 76%;
}

body {
	background: #F4F6F8;
	color: #464b54;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-size: 1em;
}

h1 {
	font-weight: 300;
	font-size: 4em;
	line-height: 120%;
}
h2 {
	font-weight: 300;
	font-size: 2em;
	line-height: 120%;
	margin-bottom: 0;
}
h3 {
	font-weight: 400;
	font-size: 1.5em;
	line-height: 130%;
	margin-bottom: .2em;
}
p {
	font-size: 1.3em;
	line-height: 130%;
	margin-bottom: .5em;
	font-weight: 300;
}

section {
	position: relative;
	padding: 10px 20px 10px;
}
section > div {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}
#intro {
	padding-top: 60px;
	padding-bottom: 40px;
}

#intro h1 span {
	display: inline-block;
}

#intro img {
	width: 100px;
	margin-bottom: 1em;
	margin-left: -10px;
    transition-duration: 0.3s;
    transition-property: transform;
}

#intro img:hover {
	transform: rotate(13deg);
}

#imprint {
	padding-bottom: 6em;
}
#imprint a {
	color: #464b54;
}

#dataprotectionlegalese h3 {
	padding-top: 100px;
}

/* Tablet Portrait Styles */
@media screen and (max-width: 768px) {}

/* Phone Styles */
@media screen and (max-width: 480px) {
/* @media screen { */
    body{
		padding: 0;
        -webkit-text-size-adjust:none;
	}
	
	h1 {
		font-size: 3em;
		margin-bottom: .5em;
	}
	h2 {
		font-size: 2em;
	}
	
	#intro {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	#imprint {
		padding-bottom: 2em;
	}

	#dataprotectionlegalese h3 {
		padding-top: 20px;
	}
	
}