*{
	margin: 0;
	padding: 0;
}
#background{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -100; 
	background-color: #000e4d;
	background-image: url("../Bilder/hintergrund/floHintergrund3.jpg");
	background-repeat: no-repeat;
	background-position: 50% 0%;
	/* background-attachment: fixed; removed for Android */
  	-webkit-background-size: cover;
  	background-size: cover;
}
#about{
	margin: auto;
}

#contentWrapper{
	width: 100%;	
}
#arrowLeft{
	display: block;
	position: fixed;
	top: 37vh;
	left: 1vw;
	font-size: 4vw;
	color: #ebebeb;
	transition: all 0.3s ease-out;
}
#arrowLeft a{
	color: rgba(235,235,235,0.2);
	transition: all 0.3s ease-out;
}
#arrowLeft a:hover{
	color: #ebebeb;
}


#contentFrame{
	max-width: 960px;
	margin: auto;
	margin-top: 35vh;
	margin-bottom: 15vh;
	
	border-radius: 5px;
	
}
#arrowRight{
	position: fixed;
	top: 37vh;
	right: 1vw;
	font-size: 4vw;
	color: rgba(235,235,235,0.2);
	transition: all 0.3s ease-out;
}
#arrowRight a{
	color: rgba(235,235,235,0.2);
	transition: all 0.3s ease-out;
}
#arrowRight a:hover{
	color: #ebebeb;
}

#noscript{
	font-family: 'Open Sans', sans-serif;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	width: 150px;
	position: fixed;
	top: 8vh;
	left: 0;
	background-color: red;
	padding: 1vw;
	border-radius: 0 15px 15px 0;
	border: 1px solid #323232;
}
#noscript h2{
	margin-bottom: 1vh;
}
@media all and (max-width: 800px), all and (max-device-width: 800px){
	#arrowRight{
		position: fixed;
		bottom: 40vh;
		right: 1vw;
		font-size: 23pt;
		color: rgba(235,235,235,0.2);
		transition: all 0.3s ease-out;
	}
	#arrowLeft{
		display: block;
		position: fixed;
		bottom: 40vh;
		left: 1vw;
		font-size: 23pt;
		color: #ebebeb;
		transition: all 0.3s ease-out;
	}
}