/* Block-Darstellung für HTML5-Elemente im IE8 */
header, 
nav, 
footer {
   display: block;
}
/***********************************************/
 
body {
	background-color: #FE9A2E;
	display: flex;
	align-items: center;
	justify-content: center;
	
}
 
#wrapper {
	max-width: 80%;
	margin: 0px auto;
	background-color: #FFFFFF;
	margin-top: 60px;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 9px 4px 5px #000;
}
 
header {
	width: 100%;
	height: 450px;
	background-color: ffffff;
	margin-bottom: 20px;
	text-align: center;
}
 
#content {
	width: 100%;
	height: 100px;
	margin-bottom: 60px;
	color: #000;
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;
	font-size: 24px;
}
 
nav {
   width: 17%;
   height: 520px;
   float: left;
   background-color: #FACC2E;
   margin-bottom: 20px;
}
 
footer {
	width: 100%;
	height: 10px;
	background-color: #ffffff;
	clear: both;
	font-size: 9px;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
}

 .img {max-width: 100%; height: auto;}
