.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    row-gap: 2rem;
    column-gap: .2rem;
    padding: 3rem;
}

.galleryImg {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

/* responsive8 */
@media (max-width:639px) {
    .galleryImg {
        width: 300px;
        height: 300px;
        object-fit: cover;
    }
}

/* responsive9 */
@media (max-width:430px) {
    .gallery {
        padding: .5rem;
    }
    .galleryImg {
        width: 200px;
        height: 200px;
    }
}