body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

h1 {
    font-size: 24px;
    margin: 20px 0;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

/* Adatta la galleria agli schermi più piccoli */
.gallery-item {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* MEDIA QUERIES PER RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .gallery-container {
        padding: 10px;
    }

    .gallery-item {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-item {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 18px;
    }
}
/* CSS Document */

