body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Verhindern, dass das Hintergrundbild scrollt */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Die Mindesthohe des Viewports verwenden */
}

.background {
    background-image: url('lumber-84678_1280.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-grow: 1; /* Füllt den verfügbaren Platz aus */
    overflow: auto; /* Ermoeglicht das Scrollen des Inhalts */
}

header {
    background-color: rgba(0, 0, 0, 0.0);
    color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1px;
    margin: 0 50px 0 50px;
    border-radius: 0 0 50px 50px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 10px 0;
    text-align: center;
}

/* Schaltflaechen */
nav ul li a {
    display: inline-block;
    background-color: rgba(50, 50, 50, 0.8);
    color: rgba(200, 200, 200, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Standardbreite fuer Desktop-Geraete */
header img {
    width: 50%;
}

/* Media Query fuer Geraete mit einer maximalen Bildschirmbreite von 768px (Tablets und Smartphones im Querformat) */
@media only screen and (max-width: 768px) {
    header img {
        width: 100%;     
    }
}

footer {
    background-color: black;
    color: rgba(200, 200, 200, 0.8);
	text-decoration: none;
    text-align: center;
	padding: 10px 0;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}