.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 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;
}

.fundoamarelo
{
    background: #fbe3b8;
}
.fundoamarelopodtudo
{
    background: #f8b133;
}


.squeezeimg {
    max-width: 100%; /* Definindo a largura máxima como 90% do contêiner pai */
    height: auto; /* Isso garante que a proporção da imagem seja mantida */
    object-fit: cover;
}    