.gallery-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px 0px;
}

    .gallery-title{
        text-align: center;
        font-size: 2rem;
        color: #002C42;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 50px;
        font-weight: bold;

    }

        .gallery{
            width: 80vw;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .gallery-img{
            width: 360px;
            border-radius: 15px;
            box-shadow: rgba(23, 23, 35, 0.185) 0px 0px 5px, rgba(0, 0, 0, 0.3) 0px 3px 7px;

        }

@media (max-width: 1250px) {
    .gallery-img{
        width: 250px;
    }
}

@media (max-width: 600px) {
    .gallery-img{
        width: 80vw;
    }
}