/* Grundeinstellungen für die ganze Seite */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black; /* Schwarzer Hintergrund */
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center;     /* Vertikale Zentrierung */
}

/* Das Text-Element */
.zentriert {
    font-family: Arial, sans-serif;
    color: #dddddd;          /* Leicht abgeschwächtes Weiß */
    font-size: 5vw;          /* %-basierte Größe (vw = Viewport Width) */
    text-align: center;
}