/*
	Diese Styles wurden aus der alten Installation 1:1 übernommen und sind ggf. doppelt zum globalStyle
*/


body, html {
	height: 100%;
}

body {
	background-color: #bd2633;
	font-family: 'Oswald';
	margin: 0;
	color: white;
	text-align: center;
	font-size: 25px;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	font-size: 80px;
	text-shadow: 0px 0px 20px black;
}

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

.center-x {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-y {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.center-xy {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
	color: inherit;
}

p:first-child {
	margin-top: 0;
}

p {
	margin-bottom: 0;
}



.raleway {
	font-family: 'Raleway';
}

#header {
	background-color: #E63946;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-transform: uppercase;
	height: 120px;
	border-bottom: 4px solid #bc2532;
	box-sizing: border-box;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

#header h1 {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 2px;
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
}

#header h1 a {
	text-decoration: none;
}

#header h2 {
	margin: 0;
	padding: 0;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 5px;
	text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
}

#homeButton {
	display: block;
	position: absolute;
	height: 100px;
	width: 100px;
	right: 10px;
	box-sizing: border-box;
	border-radius: 20px;
	transition: 0.3s;
}

#homeButton svg {
	height: 30px;
}

#homeButton:hover {
	background-color: #bc2532;
}

@media only screen and (max-width: 800px) {
	#header h2 {
		font-size: 30px;
		letter-spacing: 1px;
	}
	
	#homeButton {
		height: 60px;
		width: 60px;
	}
	
	#homeButton svg {
		height: 20px;
	}
}
@media only screen and (max-width: 550px) {
	#homeButton {
		display: none;
	}
}
@media only screen and (max-width: 450px) {
	#header h2 {
		font-size: 25px;
		letter-spacing: 0px;
	}
}





#content {
	position: fixed;
	top: 120px;
	padding-top: 20px;
	box-sizing: border-box;
	bottom: 50px;
	width: 100%;
	left: 0;
	background-color: #404040;
	margin: 0 auto;
	z-index: 2;
}

.fullHeightContent {
	bottom: 0 !important;
	overflow-y: scroll !important;
	padding-left: 40px;
	padding-right: 40px;
}

@media only screen and (max-width: 800px) {
	#content {
		padding-top: 10px;
	}
	
	.fullHeightContent {
		padding-left: 10px;
		padding-right: 10px;
	}
}

#content .innerContainer {
	height: 50%;
	box-sizing: border-box;
}

#content .innerContainer_a {
	padding: 0 20px 10px 20px;
}

#content .innerContainer_b {
	padding: 10px 20px 0 20px;
}

#content .bigButton {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
	box-sizing: border-box;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
	position: relative;
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 5px;
	transition: 0.3s;
}

#content .bigButton svg {
	height: 50px;
	display: inline-block;
	margin-bottom: 20px;
}

#content .bigButton:hover {
	border-color: #bebe00;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 1);
}

#content .button_a {
	background-color: #24436f;
	border: 3px solid #1b2639;
	background: linear-gradient(180deg, rgba(35,68,113,1) 0%, rgba(23,51,89,1) 100%);
}

#content .button_b {
	background-color: #46719e;
	border: 3px solid rgba(39, 70, 103, 1);
	background: linear-gradient(180deg, rgba(70,113,158,1) 0%, rgba(48,83,121,1) 100%);
}

@media only screen and (max-width: 800px) {
	#content {
		padding-top: 10px;
	}
	#content .innerContainer_a {
		padding: 0 10px 5px 10px;
	}
	#content .innerContainer_b {
		padding: 5px 10px 0 10px;
	}
	#content .bigButton {
		font-size: 30px;
		letter-spacing: 3px;
	}
}


#content .button {
	background-color: #46719e;
	border: 3px solid rgba(39, 70, 103, 1);
	background: linear-gradient(180deg, rgba(70,113,158,1) 0%, rgba(48,83,121,1) 100%);
	color: inherit;
	text-decoration: none;
	border-radius: 10px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 2px;
	transition: 0.3s;
	padding: 10px 30px;
	padding-left: 80px;
	display: inline-block;
	position: relative;
}

#content .button:hover {
	border-color: #bebe00;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 1);
}

#content .button svg {
	display: block;
	position: absolute;
	height: 30px;
	left: 30px;
} 

#content .box {
	background-color: #313131;
	border-radius: 20px;
	padding: 40px;
	box-sizing: border-box;
}

@media only screen and (max-width: 800px) {
	#content .box {
		padding: 20px;
	}
}

#footer {
	position: fixed;
	bottom: 0;
	height: 50px;
	line-height: 50px;
	background-color: #404040;
	width: 100%;
	color: #777777;
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 15px;
	z-index: 1;
}

.staticFooter {
	position: static !important;
	padding-top: 40px !important;
}

#footer a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

#footer a:hover {
	color: white;
}

