body{
	font-family: monospace, sans-serif;
	width: 100%;
	height 100%;
	line-height: 1.3;
	color: black;
	font-size: 16px;
	font-weight: 900;
	padding: 0;
	background-color: forestgreen;
}

h1{
	font-size: 3em;
	font-weight: 900;
	text-align: center;
	padding: 0;
	margin: 0;
}

h2{
	font-size: 1,5em;
	font-weight: 900;	
}

header{
	height: 140px;
	border-bottom: 5px solid black;

}

header a{
	color: black;
	display: inline-block;
	text-decoration: none;
	margin-left: 80px;
}

main{
	width: 100%;
	height: 750px;
	margin: auto;
	display: flex;
}

aside{
	width: 30%;
	height: 750px;
	float: left;
	border-right: 5px solid black;
	overflow-y: scroll;
}

nav{
	background-color: forestgreen;
}

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

nav a{
	color: black;
	text-decoration: none;
	padding: 0,8em;

}

nav a.aktuell{ font-weight: bold;}

a:hover{color: white;}

section{
	width: 70%;
	height: 750px;
	background-color: forestgreen;
	color: black;
	overflow-y: scroll;
	float: right;
}

section h2{
	text-decoration: underline;
	padding-left: 1em;
}

p{
	margin-top: 0;
	padding-top: 0;
	font-size: 1.5em;
	font-weight: 900;
	padding: 1em;
}

footer{
	clear: both;
	background-color: forestgreen;
	border-top: 5px solid black;
	padding: 1em;
	margin-top: 1em;
	font-size: 90%;
	text-align: center;
}