body, html{
	width: 100%;
	height: 100%;
	margin: 0;
}

header {
	width:100%;
	height:40%;
	background-image:url(Bilder/headerpexels.jpg);
	background-size:cover;
	background-repeat: no-repeat;
}

header h1{
	margin:0;
	color:#a7958a;
	font-family: "Book Antiqua";
	text-align:center;
	font-size: 180px;
	text-shadow:0 0 5px black;
	position: absolute;
	top: 150px;
	left: 40%;	
}

nav{
	width:100%;
	text-align:center;
}

nav ul{
	list-style-type:none;	
	margin-left:0;
}

nav li{
	display:inline-block;
	width:250px;
	padding:10px 0;
	border: solid 2px #3e2018;
	text-align: center;
	background-color: rgba(80.4, 43.9, 20.8, 0.5);
	margin: -20px 5px;
}

nav li:hover{
	background-color:rgba(80.4, 43.9, 20.8, 0.2);
	border: dotted 2px #3e2018;
}
nav a{
	font-family:"Book Antiqua";
	text-decoration: none;
	color:#221310;
	font-weight:bold;
	text-transform:uppercase;
}

div.content{
	margin-left:5%;
	
	background-position
	
}

div.content img.normal{
	width:300px;
	float: left;
	margin-top: -25px;
	margin-left: -20px;
	border: solid 2px #3e2018;
	border-radius: 200px;
	padding: 4px;
	box-shadow: 6px 6px 6px 6px lightgrey;
	}


div.content h1{
	font-family:"Book Antiqua";
	font-size:50px;
	margin-top:60px;
	}

div.content h2{
	font-family:"Book Antiqua";
	text-decoration: underline;
	margin-left:330px;
	margin-bottom: -10px;
		}

div.content p{
	font-family:"Times New Roman";
	font-size:20px;
	margin-left:330px;
	margin-right:200px;
	margin-bottom: 50px;	
}

div.content p cite{
	font-size:15px;
	margin-top:20px;
}


ol{
	font-family:"Times New Roman";
	font-size:20px;
	margin-left:330px;
	margin-right:200px;
	margin-bottom: 50px;	
}

ul{
	font-family:"Times New Roman";
	list-style-type:circle;
	list-style-position:inline-block;
	font-size:20px;
	margin-left: 330px;
}

div.Galerie{
	background:white;
	border-radius:10px;
	padding:20px;
    width:700px;
    margin:20px auto;
}

div.Galerie img{
	background: white;
	width: 300px;
	margin:15px 10px;
	padding: 10px 10px 50px 10px;

	-moz-box-shadow: 0 0 5px 2px grey;
    -webkit-box-shadow: 0 0 5px 2px grey;
    box-shadow: 0 0 5px 2px grey;
	transform: rotate(-2deg);	
	opacity:0.9;
	transition: all 0.3s ease-out;
}

div.Galerie img:nth-child(2n) {
	transform: rotate(2deg);
}

div.Galerie img:hover{
	transform: rotate(0deg) scale(3);
	opacity:1;
	padding:0;
	-moz-box-shadow: 2px 2px 2px grey;
    -webkit-box-shadow: 2px 2px 2px grey;
	box-shadow: 2px 2px 2px grey;
	
	position:relative;
	z-index:1;
}



