@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;
    cursor: pointer;
    transition: transform 0.2s ease;
}


/*  - Hover-effect voor wat levendigheid */
.gallery img:hover {
    transform: scale(1.03);
    }

/* 7️⃣ - Responsiviteit */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
    }
}

.thumb {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
}

/* Bestandsnaam onder de thumbnail */
.caption {
    text-align: center;
    margin-top: 6px;
    font-size: 0.85em;
    color: rgba(180,180,180,1);
}

.copyrightnaam{
	position: relative;
	top: -26px;
	color: hsla(11,7%,70%,1.00);
}


