body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Stellt sicher, dass der Body die volle Höhe des Viewports einnimmt */
    background-image: url('img/Folie1_quer.png'); /* Pfad zu Ihrem Bild */
    background-size: cover; /* Passt das Bild an, um den gesamten Hintergrund zu bedecken */
    background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
    background-position: center center; /* Positioniert das Bild zentriert und oben */
    background-attachment: fixed; /* Stellt sicher, dass das Hintergrundbild beim Scrollen fixiert bleibt */
    font-family: Arial, sans-serif;
    color: #fff;
}

.content {
    text-align: center;
    padding: 100px;
    background-color: rgba(0, 0, 0, 0.3); /* Ein halbtransparentes Overlay für bessere Lesbarkeit */
    border-radius: 10px;
    margin: 50px auto;
    max-width: 800px; /* Begrenzte Breite für den Inhalt */
}

form {
    margin-top: 20px;
}

label {
    font-size: 18px;
    color: #fff;
}

input[type="file"] {
    margin: 10px 0;
}

input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.container {
    display: flex;
    width: 800px;
    margin: 0 auto;
}

.left-section {
    background-color: #8ba08a;
    padding: 20px;
    width: 500px;
}

.right-section {
    background-color: #603611;
    padding: 20px;
    width: 300px;
}

.contact-details {
    margin-top: 20px;
}

h1, h2 {
    color: black;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}