/* Gallerij */
.album_container{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 40px 10px;
	max-width: 1200px;
	margin: 0 auto;
}

.album_container img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

@media screen and (max-width: 900px) {
	.small_heading_wrapper {
		flex-direction: column;
		align-items: flex-start;
	}

	.small_heading_wrapper > h2 {
		font-size: 28px;
		margin-bottom: 10px;
	}

	.album_container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 500px) {
	.album_container {
		grid-template-columns: repeat(1, 1fr);
	}
}