/* styles.css */
body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000; /* Optional: Hintergrund */
}

.logo-container {
    text-align: center; /* Fallback für ältere Browser */
}

.logo {
    max-width: 700px; /* Passe die Breite an dein Logo an */
    height: auto; /* Hält das Seitenverhältnis */
    display: block;
    margin: 0 auto; /* Horizontale Zentrierung als Fallback */
}
