    body, html {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        height: 100%;
    }

    body {
        background: url('IMG/backdrop.jpg') no-repeat center center fixed; /* Setzt das Hintergrundbild */
        background-size: cover; /* Skaliert das Bild, um den gesamten Hintergrund zu bedecken */
        color: #998E66; /* Setzt alle Texte auf den angegebenen Farbton */
        font-family: Arial, sans-serif;
    }

    .content {
        padding: 20px;
        color: #998E66; /* Setzt die Texte auf den angegebenen Farbton */
        margin-bottom: 60px; /* Abstand zum Footer */
    }

    h1, h2, h3 {
        color: #998E66; /* Setzt die Überschriften auf den angegebenen Farbton */
    }

    /* Entfernt die Farbänderung beim Hover */
    h1:hover, h2:hover, h3:hover {
        color: #998E66; /* Beibehaltung der Originalfarbe beim Hover */
        text-shadow: none; /* Entfernt den Textschatten beim Hover */
    }

    .header, .footer {
        background-color: rgba(0, 0, 0, 0.5); /* Setzt den Hintergrund auf transparent */
        color: #998E66; /* Setzt die Texte auf den angegebenen Farbton */
    }

    .footer {
        display: flex;
        flex-direction: column; /* Setzt die Richtung der Elemente auf Spalte */
        align-items: center;
        padding: 10px;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: auto; /* Automatische Höhe für den Footer */
        margin: 0;
        padding: 0;
    }

    .footer .footer-text {
        margin-bottom: 10px; /* Abstand zwischen Text und Links */
        text-align: center;
    }

    .footer .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .footer .menu a {
        color: #998E66; /* Setzt die Links auf den angegebenen Farbton */
        padding: 10px;
        text-decoration: none;
    }

    .footer .menu a:hover {
        background-color: #444;
    }

    .footer .divider {
        height: 30px;
        width: 1px;
        background-color: #998E66; /* Setzt die Trennlinie auf den angegebenen Farbton */
        margin: 0 10px;
    }

    .section:last-child {
        margin-bottom: 70px; /* Abstand zum Footer */
    }

    @media (max-width: 600px) {
        .header {
            flex-direction: column;
            text-align: center;
        }

        .footer {
            flex-direction: column;
            text-align: center;
        }

        .footer .menu {
            flex-direction: column;
        }

        .footer .divider {
            width: 100%;
            height: 1px;
            margin: 10px 0;
        }

        .content {
            padding: 10px;
        }
    }

    .center-text {
        text-align: center;
    }

    .center-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Optional, falls der Text vertikal in der Mitte sein soll */
    }

    .center-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .divider {
        height: 1px;
        background-color: gold;
        width: 80%;
        margin: 20px 0;
    }

    .form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 50%;
        margin: 0 auto;
    }

    .button {
    background-color: #998E66;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #555555;
}

    textarea {
        width: 100%;
        height: 300px;
    }

    input, textarea {
        margin: 10px 0;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    label, input, textarea {
        color: #998E66; /* Angegebener Farbton */
    }

