body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #111;
    color: #FFFFFF;
    background-image: url('background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-y: auto; /* Ermöglicht vertikales Scrollen */
}

/* Hauptüberschrift */
h1 {
    text-align: center;
    margin-top: 30px;
    color: #FFFFFF;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Container für Login-Button */
.login-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

/* Container für öffentliche und private Webseiten */
.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    flex-wrap: wrap; /* Ermöglicht Umbruch der Boxen auf kleineren Bildschirmen */
}

/* Stil für die öffentliche Webseiten-Sektion */
.public-websites,
.private-websites {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-width: 250px; /* Minimale Breite, um das Layout stabil zu halten */
}

/* Überschrift der Sektionen */
h2 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

/* Ungeordnete Liste */
ul {
    list-style-type: none;
    padding: 0;
}

/* Listenpunkte */
li {
    background-color: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background-color 0.3s;
}

/* Animation beim Hover über Listenpunkte */
li:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.4);
}

/* Links innerhalb der Listen */
a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    display: block;
}

/* Links beim Hover */
a:hover {
    color: #DDDDFF;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Stil für den Login-Button */
.login-button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 18px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

/* Stil für den Hover-Effekt des Login-Buttons */
.login-button:hover {
    background-color: rgba(51, 51, 51, 0.8);
    transform: translateY(-3px);
}

/* Media Queries für mobile Geräte */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .public-websites,
    .private-websites {
        width: 80%;
        margin: 10px 0;
        padding: 15px;
    }

    h2 {
        font-size: 1.8em;
    }

    ul {
        padding-left: 20px;
    }

    li {
        padding: 15px;
    }

    .login-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .public-websites,
    .private-websites {
        width: 90%;
        margin: 10px 0;
        padding: 12px;
    }

    h2 {
        font-size: 1.6em;
    }

    li {
        padding: 10px;
    }

    .login-button {
        padding: 10px 18px;
        font-size: 14px;
    }
}
