#Galleria {
    width: 100%;
    /*min-height: 70vh;*/
    padding: 2vw 0;
    display: none;
    grid-template-columns: repeat(6, 15vw);
    gap: 1vw;
    background-image: linear-gradient(to top, #f3d7c2, #fffcf9);
    justify-content: center;
    /*background-image: url("assets/seamless_background.png");
    background-repeat: repeat;
    background-size: 200px 200px;
    background-attachment: fixed;*/
}

.img-galleria {
    width: 15vw;
    height: 15vw;
    padding: 0;
    outline: 0;
    border: 15px solid #fff;
    object-fit: cover;
    transition: all 0.4s ease 0s;
}

.img-galleria:hover {
    transform: scale(1.1);
    border: 5px solid #fff;
}

@media screen and (max-width: 1000px) {

    #Galleria {
        padding: 3vw 0 5vw 0;
        grid-template-columns: repeat(3, 30vw);
        gap: 2vw;
    }

    .img-galleria {
        width: 30vw;
        height: 30vw;
    }

    .img-galleria:hover {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 700px) {

    #Galleria {
        padding: 20px 0;
        grid-template-columns: repeat(2, 44vw);
        gap: 3vw;
    }

    .img-galleria {
        width: 44vw;
        height: 44vw;
    }

    .img-galleria:hover {
        transform: scale(1.1);
    }

}