#bannerSectionBanner{
    background-image: url('../../../images/backgrounds/reunion-unsmushed.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bannerSectionBanner .text-banner{
 color: white;
}
#bannerSectionBanner .content{
    width: 100%;
    background-color: hsla(0, 0%, 0%, 0.50);
    justify-content: center;
    align-items: center;
    color: white;
    padding: 6rem 3rem;
    height: 100%;
    gap: 0;
}

@media screen and (max-width: 768px) {
    #bannerSectionBanner{
        text-align: center;
        width: 100vw;
        padding:2rem 0;
        background-attachment: scroll;
    }
    #bannerSectionBanner .content{
        justify-content: center;
        align-items: center;
        width: 100vw;
        padding: 3rem 0;
    }
    #bannerSectionBanner .content h1{
        margin-top: 3rem;
        font-size: 30px;
        width: 90vw;
    }
    #bannerSectionBanner .content h2{
        font-size: 20px;
        width: 90vw;
    }
    #bannerSectionBanner .content p{
        max-width: 90vw;
    }
}