body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

header {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 0;
    text-align: center;
    position: relative;
}

nav {
    position: absolute;
    top: 50%;
    right: 6rem;
    transform: translateY(-50%);
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 2rem;
    background-color: #555;
    border-radius: 4px;
}

nav a:hover {
    background-color: #777;
}

main {
    flex: 1;
    padding: 1rem;
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    text-align: center; /* Zentriert Text */
}

.message {
    font-size: 1.5rem;
    color: #333;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0.25rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a.white-link {
    color: #fff !important;
    text-decoration: underline !important; /* Fügt die Unterstreichung hinzu */
}

footer a.white-link:hover {
    text-decoration: underline !important; /* Beibehaltung der Unterstreichung beim Hover */
}
