.gallery {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
    justify-content: space-between;
    grid-gap: 20px;
}



.gallery .box img {
    width: 100%;
}

