* {
	margin:0px;
	padding: 0px;
	font-family: 'Helvetica';
	font-size: 20px;
	color: rgba(20,20,70,1);
	text-decoration: none;
	cursor: default;
	letter-spacing: 0.5px;
}

body {
	background-color: #ffffff;
}

body header {
	z-index: -2;
}

body header img {
	width: 100%;
	z-index: -2;
}

body main {
	background-color: white;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

body main article.text {
	position: relative;
	margin-top: -50px;
	margin-bottom: 50px;
	left: 5%;
	width: 90%;
	z-index: 1;
	perspective-origin: 50% 50%;
	perspective: 1200px;
}

body main article.text div.text {
	background-color: rgba(255,255,255,1);
	width : 100%;
	/*min-height: 400px;*/
	margin-bottom: 40px;
	border-radius: 20px;
	z-index: 1;
}

body main article.text div.text h1 {
	padding:  25px 25px 15px 15px;
	color: rgba(110,170,230,1);
	font-size: 23px;
}

body main article.text div.text p  {
	padding:  15px 25px 0px 25px;
}

body main article.text div.text img  {
	width: 90%;
	margin-left: 5%;
	border-radius: 5px;
}


body main article.text div.schattenoben {
	position: absolute;
	width : 100%;
	height: 100px;
	top: 0px;
	box-shadow: 0px 0px 25px 5px rgba(30,30,30,.3);
	transform: rotateX( -5deg );
	z-index: -1;
	border-radius: 20px 20px 50px 50px;
}

body main article.text div.schattenunten {
	position: absolute;
	background-color: none;	
	width : 100%;
	height: 100px;
	bottom: 40px;
	box-shadow: 50px 50px 105px 2px rgba(30,30,30,.1) , -50px 50px 105px 2px rgba(30,30,30,.1);
	transform: rotateX( 5deg );
	z-index: -2;
	border-radius: 0px 0px 20px 20px;
}

body main article.info {
	background-color: rgba(255, 255, 255, 1);
	position: relative;
	margin-bottom: 50px;
	left: 5%;
	width: 90%;
	z-index: 1;
}

body main article.info h2 {
	color: rgba(110,170,230,1);
	font-size: 20px;
}

body main article.info p {
	padding:  15px;
}

body main article.info p.wichtig {
	font-size: 32px;
	white-space: nowrap;
	padding-left: 15px;
}

body main article.info p a {
	text-decoration: underline;
	font-weight: bold;
	font-size: 20px;
}

body main article.info p a:hover {
	color: rgba(110,170,230,1);
}

body footer {
	position: absolute;

}

@media (min-width:700px) {

	body main  {
		flex-direction: row;
		width: 95%;
	}

	body main article.text {
		width: 60%;
	}

	body main article.info {
		margin-top: 20px;
		width: 30%;
		margin-left: 5%;
		margin-right: 5%;
	}

	body main article.info p.wichtig {
		padding-left: 0px;
	}

}

/* Main Navigation */
nav {
	position: fixed;
	top: 0px;
	left:0px;
	width: 100%;
	z-index: 5;
}
nav div {
	display: flex;
	width: 100%;
	/*justify-content: space-between;*/
	align-items: flex-start;
}

nav div div a {
	margin: 3px;
	color: white;
	color: rgba(20,20,70,1);
	color: rgba(255,255,255,1);
}

nav div div a:hover {
	margin: 3px;
	color: red;
	color: rgba(110,170,230,1);
}

nav div div {
	padding: 0px 5px 2px 5px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	background-color: rgba(250,250,250,.85);
	background-color: rgba(0,0,0,.65);
}

nav div div div {
	display: none;
}

nav div div:hover div {
	display: flex;
	flex-direction: column;
	background-color: rgba(0,0,0,0);
}

