body, html{
    height: 100%;
    width: 100%;
    margin: 0; /* Stellen Sie sicher, dass es keinen Margin gibt */
}

.container{
    padding-top: 8em;
    background-image: url("../images/login/background.png");
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.option-box {
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten hinzugefügt */
}

.flex-container {
    margin-left: 5em;
    margin-right: 5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Neue Zeile hinzugefügt */
}

.innen-links{
    background-color: white;
    opacity: 0.8;
}

.innen-rechts{
    background-color: white;
    opacity: 0.8;
}

.innen-links img{
    width: 80%; /* Größe der Bilder angepasst */
    max-width: 300px; /* Maximale Breite für mobile Geräte */
    height: auto;
    border-radius: 5px;
}

.innen-rechts img{
    width: 80%; /* Größe der Bilder angepasst */
    max-width: 300px; /* Maximale Breite für mobile Geräte */
    height: auto;
    border-radius: 5px;
}

.flex-container a{
    margin-bottom: 2rem;
}

.option-box h3 {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 1rem;
}

.innen-links,
.innen-rechts {
    width: 49%; /* Breite für Desktop-Geräte angepasst */
    margin-bottom: 2rem;
}

.section-title h1{
    color: white;
}

.section-title p{
    color: white;
}


@media (max-width: 768px) {
    .innen-links,
    .innen-rechts {
        width: 100%; /* Breite für mobile Geräte */

    }

    .flex-container{
        margin-left: 1em;
        margin-right: 1em;
    }

    .container{
        padding-top: 2em;
        
    }

    body{
        background-color: #DD0835;
        background-image: url("../images/login/background.png");
        background-size: contain;
    }

}