body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;  /* horizontal zentrieren */
    align-items: center;      /* vertikal zentrieren */
    height: 100vh;            /* volle Höhe des Viewports */
    text-align: center;
    flex-direction: column;   /* Elemente untereinander anordnen */
}

h1 {
    font-size: 10vw; /* 10% der Bildschirmbreite */
    margin: 0;
}

p {
    font-size: 4vw; /* optional kleinerer Text */
}

a {
    font-size: 6vw;           /* Große Schrift für den Link */
    color: green;             /* Weiße Schriftfarbe */
    text-decoration: underline;    /* Kein Unterstrich */
    margin-top: 1rem;
}

a:hover {
    color: #ccc;              /* Optional: Farbe beim Überfahren mit der Maus */
}