@charset "utf-8";
/* CSS Document */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    justify-items: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    object-fit: cover;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* 6️⃣ - Hover-effect voor wat levendigheid */
.gallery img:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 7️⃣ - Responsiviteit */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
    }
}
