*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



.gallery-container{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 3vw;
    padding: 40px 2vw;
}
.gallery-items{
    width: 340px;
    height: 340px;
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px #0006;
    flex-grow: 1;
    transition: transform .5s linear;
}
.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

