section.gallery {
    width: 100%;
    padding-top: 150px;
    background: #e9eaee;
}

section.gallery .container {
    width: 80%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

section.gallery .container .gal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

section.gallery .container .gal img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

@media (max-width: 990px) {
    section.gallery {
        margin-top: 10px;
    }
}