body {
    background-color: #f0f2f5; /* Hellgrauer Hintergrund */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
    height: 100vh; /* Volle Bildschirmhöhe nutzen */
    margin: 0;
}

.container {
    background-color: white;
    padding: 2rem;
    border-radius: 15px; /* Abgerundete Ecken */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Leichter Schatten */
    text-align: center;
    width: 300px;
}

ul {
    list-style-type: none; /* Punkte entfernen */
    padding: 0;
}

li {
    margin: 10px 0;
}

a {
    text-decoration: none; /* Unterstrich entfernen */
    color: #333;
    font-weight: bold;
    display: block;
    padding: 10px;
    background-color: #e4e6eb;
    border-radius: 8px;
    transition: background-color 0.3s;
}

a:hover {
    background-color: #d8dadf; /* Farbe ändern beim Drüberfahren */
}