body{
            margin: 0;
            padding: 0;
            min-height: 100vh;
            /* Das Pergament-Muster */
            background-color: #f4d0a4;
            background-image: 
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.05) 100%),
                radial-gradient(circle at 20% 30%, #e2c08d 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, #d8b078 0%, transparent 30%),
                radial-gradient(circle at 30% 80%, #e8c99b 0%, transparent 25%),
                /* Die feine Körnung/Struktur */
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            background-blend-mode: multiply;
            font-family: 'Georgia', serif;
        }

        .content {
            max-width: 800px;
            margin: 50px auto;
            padding: 40px;
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 5px;
        }
	
	font-family: monospace, sans-serif;
	width: 100%;
	height 100%;
	line-height: 1.3;
	color: black;
	font-size: 16px;
	font-weight: 900;
	padding: 0;

}

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

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

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

}

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

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{
	
}

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;
	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;
	border-top: 5px solid black;
	padding: 1em;
	margin-top: 1em;
	font-size: 90%;
	text-align: center;
}