.gallery-title {
    display: flex;
    justify-content: center;
    background-color: #ffeb3b;
    margin-top: 3%;
}
#gallery {
    scroll-margin-top: 80px;
}
@media (min-width: 1124px) {
    .gallery-container-before-after {
        display: flex;
        justify-content: space-around;
        padding-top: 2%;
    }
    .gallery-item {
        display: flex;
        flex-direction: column;
        padding: 4%;
        width: 20%;
        border: 2px solid black;
    }
}

@media (max-width: 1124px) {
    .gallery-container-before-after{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 80%;
    }

    .gallery-item {
        margin: 2%;
        display: flex;
        flex-direction: column;
        padding: 4%;
        width: 85%;
        border: 2px solid black;
    }

}
