.gallery{
    margin: 7rem 2rem 3rem;
}

.gallery-wrapper img{
    width: 300px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    transition: all .1s ease-in-out;
    will-change: transform;
    overflow: hidden;
}

.gallery-wrapper img:hover{
    transform: scale(1.01);
}

.gallery-wrapper:nth-child(odd){
    border: 3px solid var(--primary-red);
}

.gallery-wrapper:nth-child(even){
    border: 3px solid var(--primary-green);
}

.gallery-wrapper{
    border-radius: 20px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.gallery-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1px;
    will-change: transform;

}

.gallery h2{
    margin-block-end: 2rem;
}



