body, html {
    height: 100%;
    margin: 0;
    font-family: Lucida Grande, sans-serif;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: olive;
    margin-top: auto; /* Vertikale Zentrierung */
    margin-bottom: auto; /* Vertikale Zentrierung */
}

.logo {
    width: 25%;
    max-width: 300px;
}

.text {
    line-height: 1.2; /* Kleinerer Zeilenabstand */
    margin-top: 20px;
    color: white; /* Schriftfarbe geändert zu weiß */
    font-size: 20px;
}

/* Stile für Links */
a {
    color: white;            /* Setzt die Textfarbe auf Weiß */
    text-decoration: none;   /* Entfernt die Unterstreichung */
}

a:hover, a:focus, a:active {
    color: white;            /* Behält die weiße Farbe bei Hover, Fokus oder Aktivierung */
    text-decoration: none;   /* Entfernt die Unterstreichung auch in diesen Zuständen */
}

@media screen and (max-width: 600px) {
    .logo {
        width: 50%;
    }

    .text {
        font-size: 16px;
    }
}