/* 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;	
}
body, html {
	height: 100%;
}
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;
}

/* # Style Start # */
body {
	background: rgb(51,102,204);
	background: linear-gradient(180deg, rgba(51,102,204,1) 0%, rgba(0,26,74,1) 85%);
	color: whitesmoke;
	font-family: "Avenir Next", sans-serif;
}
.wrapper {
	min-height: 100%;
	margin-bottom: -10em;
}
.graphic-container {	
	position: relative;	
	display: flex;
	flex-direction: column;
	align-items: center;
}
h1 {
	text-align: center;
	max-width: 30em;
	font-size: 2rem;
	padding: 10vh 6vh 6vh;
}
.errorcode{
	position:absolute;
}
img {
	margin: 0 auto;
	display: block;
	width: 50vw;
}
img.logo {
	padding-top: 5vh; 
	width: 15vw;
}
.divider-line {
	width: 100%;
	border-top: 4px solid white;
	margin-top: -4px; 
}
.home-button {
	background: rgba(255,255,255,0.2);
	text-decoration: none;
	padding: 8px 16px;
	margin: 5vh auto;
	border-radius: 3px;
	color: white;
}
.home-button:hover {
	background: rgba(255,255,255,0.8);
	color: #96C5FC;
} 
footer {
	padding: 0 10vw 0 14vw;
	min-height: -10em;
}
footer div {
	width: 25%;
	float: left;
	
}
footer div h4 {
	font-weight: bold;
	padding-bottom: 4px;
}
footer div a { 
	color: rgba(255,255,255,0.8);
	float: left;
	clear: both;
}
footer div a:hover {
	color: rgba(255,255,255,1);
}
footer div p {
	color: rgba(255,255,255,0.8);
}
footer div h4,
footer div p,
footer div a {
	line-height: 140%;
	font-size: 0.8rem;
}
/* # Mobil Style # */
@media screen and (max-width: 740px) {
	h1 {
		font-size: 1.4rem
	}
	img {
		width: 70vw;
	}
	img.logo {
		padding-top: 5vh; 
		width: 30vw;
	}
	.divider-line {
		margin-top: -1px; 
		border-top: 2px solid white;
	}
	footer {
		padding: 0 10vw 0 10vw;
	}
	footer div {
		width: 100%;
		padding-bottom: 16px; 		
	}
	footer div h4,
	footer div p,
	footer div a {
		text-align: center;
		width: 100%

	}
}