body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    background-image: url('hintergrund.jpg'); /* Setzt das Hintergrundbild */
    background-size: cover; /* Sorgt dafür, dass das Bild den ganzen Bereich abdeckt */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
}

.title {
    color: white;
    font-family: 'Century Gothic', 'Arial', sans-serif;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-size: 48px;
}

.image-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex-grow: 1; /* Ermöglicht es dem Container, verfügbaren Platz zu nutzen */
}

.notice {
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    width: 100%;
    font-size: 18px;
    margin: 20px 0; /* Fügt oben und unten einen Abstand hinzu */
    margin-bottom: 20px; 
}


img {
    max-width: 100%; /* Ermöglicht eine maximale Breite, um Übergrößen zu vermeiden */
    max-height: 100%; /* Beschränkt die Höhe, um innerhalb des Containers zu bleiben */
    height: auto; /* Behält die Proportionen bei */
    width: auto; /* Behält die natürliche Breite bis zu einem gewissen Grad bei */
    margin-top: 20px; /* Verschiebt das Bild ein wenig nach unten */
}