#sec-2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 70svh;
}

#sec-2 .bg-overlay {
    /* Oben lange deckend, Mitte transparent (Bild sichtbar), unten lange deckend */
    background: linear-gradient(
        rgba(47, 47, 47, 1.0) 0%,
        rgba(47, 47, 47, 0.98) 10%,
        rgba(50, 50, 50, 0.92) 25%,
        rgba(55, 55, 55, 0.80) 40%,
        rgba(58, 58, 58, 0.75) 50%,
        rgba(55, 55, 55, 0.80) 60%,
        rgba(50, 50, 50, 0.92) 75%,
        rgba(47, 47, 47, 0.98) 90%,
        rgba(58, 58, 58, 1.0) 100%
    );
}

#sec-2 > img {
    max-width: 18rem;
}

#sec-2-content {
    max-width: 35rem;
}

#sec-2-content > * {
    text-align: justify;
}

@media(width <= 900px) {
    #sec-2 {
        flex-direction: column;
        justify-content: center;
    }

    #sec-2 * {
        text-align: center;
    }
    
    /* Logo auf Mobile ausblenden */
    #sec-2 > img {
        display: none;
    }

    #sec-2-content {
        margin-left: 5rem;
        margin-right: 5rem;
        margin-bottom: 3rem;
    }
}

@media(width <= 600px) {
    #sec-2-content {
        max-width: 30rem;
    }
}
