#background{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -100; 
	background-image: url("../Bilder/hintergrund/educationHintergrund.jpg");
	background-repeat: no-repeat;
	background-position: 50% 0%;
	/* background-attachment: fixed; removed for Android */
  	-webkit-background-size: cover;
  	background-size: cover;
}
#educationContentWrapper{
	background-color: rgba(255,255,255,0.95);
	color: #323232;
	font-family: 'Open Sans', sans-serif;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	max-width: 960px;
	padding: 1em;
	border-radius: 5px;
	text-align: center;
}
h1{
	display: block;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	margin: 0;
	margin-bottom: 5vh;
	padding: 0;
	font-weight: 300;
	font-size: 2vw;
	padding: 1vw;
	color: #323232;
	font-weight: 900;
}
#text{
	width: 50%;
	text-align: justify;
	margin: auto;
	margin-bottom: 4vh;
	font-size: 1.6vw;
	
}
#anmeldeButton{
	margin: auto;
}
button{	
	font-family: 'Open Sans', sans-serif;
	background-color: rgba(255,255,255,0.1);
	color: #323232;
	font-size: 2vw;
	margin: auto;
	margin-top: 0;
	margin-bottom: 40px;
	border: 2px solid #323232;
	transition: all 0.4s;
	cursor: pointer;
	padding: 10px;
	padding-top: 1vw;
	padding-bottom: 1vw;

}
button:hover{
	color: #ebebeb;
	border: 2px solid #323232;
	background-color: #323232;
}
button:active{

	color: #ebebeb;
	background-color: #323232;
}
@media all and (max-width:800px) and (orientation: landscape), all and (max-device-width: 800px) and (orientation: landscape){
	body{
		background-size: 100vw auto;
	}
}
@media all and (max-width: 1070px), all and (max-device-width: 1070px){
	#educationContentWrapper{
		margin: auto;
		max-width: 70%;
	}
}
@media all and (max-width:800px), all and (max-device-width: 800px){
	body{
		background-size: auto 100vh;
	}
	#text{
		width: 66%;
	}
	h1{
		font-size: 15pt;
	}
	#text{
		font-size: 12pt;
	}
	button{
		font-size: 12pt;
	}

}
