body,html{
	witdh:100%;
	height:100%;
	margin:0;
}
header{
	width:100%;
	height:40%;
	background-image:url(Bilder/Paprika.jpg);
	background-size:cover;	
	background-repeat:no-repeat;
	
}
header h1{
	text-align:center;
	color:white;
	font-family:"times new roman";
	font-size:60px;
	position:absolute;
	left:10%;
}
header h1 span{
	font-family:Times new Roman;
	font-size:130px;
	color:white;
	margin-left:40px;
}




nav{
	width:100%;
	text-align:center;
}
nav ul{
	list-style-type:none;
}
nav li{
	display:inline-block;
	width:200px;
	padding:5px 0;
	border-right: solid red 2px;
	text-align:center;
}
nav li:last-child {
	border:none;
}
nav a{
	text-decoration:none;
	font-family:"Microsoft YaHei UI Light";
	color:black;
}
nav a:hover{
	color:red;
	font-size:15px;
}




div.content div.inhalt {
	width:55%;
	float:left;
}	
div.content div.inhalt h2,
div.content h2{
	font-size:60px;
	font-family:"Microsoft YaHei UI Light";
	color:darkgreen;
	margin-left:50px;
}
div.content div.inhalt p{
	margin-left:50px;
	text-align:justify;
	font-size:20px;
	background-color:rgb(249,198,130);
	padding:30px;
	font-family:calibri;
}
div.content img.normal{
width:35%;
float:right;
margin-right:100px;
margin-top: 60px;
}
div.content cite{	
}
div.inhalt ul{
	margin-left:50px;
	text-align:justify;
	font-size:20px;
	background-color:rgb(249,198,130);
	padding:30px;	
	font-family:calibri;
	list-style-type:circle;
}
div.inhalt cite{
	margin-left:50px;
}
h3{
	Margin-left:50px;
	font-family:"Calibri Light";
	font-size:40px;
	color:orange;
	
}
/** GALERIE */
div.galerie {
	background-color:white;
	border-radius:10px;
	padding:20px;
	width:700px;
	margin:20px auto;
}
div.galerie img{
	background:white;
	width:150px;
	margin:15px 10px;
	padding:10px 10px 50px 10px;
	box-shadow:0 0 5px 2px #ccc;
	transform:rotate(-2deg);
	opacity:0.8;
	transition: all 0.4s ease-out;
}
div.galerie img:nth-child(2n){
	transform:rotate(2deg);
}
div.galerie img:hover{
	transform: rotate(0deg) scale(3);
	opacity:1;
	padding:0;
	box-shadow: 2px 2px 2px #888;
	position:relative;
	z-index:1;
}