@import url('https://fonts.googleapis.com/css?family=Oswald');

/*
Stylesheets 'the eazzi company'
*/

/*--------------------------------------------------------------
Normalisieren
--------------------------------------------------------------*/
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
}
html {
	overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
		-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
	background: #f0f0f0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol,
ul {
	list-style: none;
}
table {
	border-spacing: 0;
	border-collapse: separate;
}
caption,
th,
td {
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
blockquote,
q {
	quotes: "" "";
}

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

#header-wrapper {
	width:100%;
	height:150px;
	background:#222222;
}

#header {
	width:100%;
	text-align:center;
}

#header img {
	margin:2em;
	width:250px;
}

#teaser {
	width:100%;
	height:400px;
	color:#f2f2f2;
	background-image: url(../background-teaser.jpg);
	background-size:cover;
	border-bottom:1px solid #222222;
	text-align:center;
}

#content {
	width:100%;
	background:#ffffff;
}

#panel hr {
	background:#efefef;
	height:1px;
	border:0;
}

#panel {
	width:70%;
	margin-left:15%;
	margin-right:15%;
	background:#f9f9f9;
	text-align:center;	
	padding-top:20px;
	padding-bottom:20px;
	font-family: 'Oswald', sans-serif;
}

#panel h1 {
	font-size:24pt;
	padding-bottom:1em;
}

#teaser h2 {
	font-family: 'Oswald', sans-serif;
	font-size:24pt;
	padding-bottom:1em;
	padding:5em;
	text-shadow: -2px 2px 4px #222222;
}

#panel p {
	font-size:12pt;
	width:80%;
	margin-left:10%;
	margin-right:10%;
	padding-bottom:1em;
}

#footer {
	background:#222222;
	color:#f2f2f2;
}

#footeritem {
	margin-right:50px;
	padding-top:15px;
	padding-bottom:15px;
	float:right;
	font-family: 'Oswald', sans-serif;
	font-size:12px;
	letter-spacing:0.07em;
	line-height:2em;
	text-transform:uppercase;
	
}

/* The alert message box */
.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-size:14px;
    letter-spacing:0.06em;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}