body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #c6c0be; 
	}

header {
    background-color: white; /* Transparenter Hintergrund */
    color: white;
    padding: 10px;
    text-align: center;
	.pacifico-regular {
    font-family: "Pacifico", serif;
	font: normal normal 34px 'Pacifico','Arial','cursive';
    font-weight: 400;
	color: #7B9600;
	line-height: 36px;
    font-style: normal;}
	.material-symbols-outlined {
	font-variation-settings:
	'FILL' 1,
	'wght' 400,
	'GRAD' 200,
	'opsz' 48}
}

}

nav {
    background-color: #0D6006;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
	background-color: #0D6006;
}

nav ul li {
    flex: 1;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #7B9600;
}

main {
    flex: 1;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Leicht transparenter Hintergrund */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten */
}

footer {
    bottom: 0;
    width: 100%;
	background-color: #0D6006;}
