@charset "utf-8";
/* CSS Document */


.gallery {
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
    gap: 15px;
    justify-items: center;
	margin-top: 40px;
}

.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);
	-webkit-box-shadow: 4px 4px 4px hsla(0,0%,0%,0.64);
	box-shadow: 4px 4px 4px hsla(0,0%,0%,0.64);
    }



.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);
}

h1 a {
	text-decoration: none;
	color: #6c6c6c;
}
