/* Gesamte Seite */
body {
    margin: 0;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;

    /* Deutschland Flagge: Schwarz, Rot, Gold */
    background: linear-gradient(
        to bottom,
        #000000 33%,   /* Schwarz oben */
        #dd0000 33%,   /* Rot */
        #dd0000 66%,   /* Rot */
        #ffce00 66%    /* Gold unten */
    );
}

/* Titel oben im schwarzen Bereich */
h1 { 
    text-align: center;
    font-size: 90px;
    color: white;
    margin-top: 60px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

/* Container für Links - mittig im roten Bereich */
.links{
    position: absolute;
    top: 50%;              /* Mitte der Seite */
    left: 50%;
    transform: translate(-50%, -50%); /* genau zentrieren */
    text-align: center;
}

/* Text der Links */
p{
    font-size: 45px;
    margin: 10px;
}

/* Links selbst */
a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

a:hover{
    color: yellow;
}

a:visited{
    color: white;
}