.lightbox {
	/* Hidden lightbox image */
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);

	img {
		max-width: 90%;
		max-height: 80%;
		margin-top: 2%;
	}

	&:target {
		/* Show the lightbox */
		display: block;
	}
}

.close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 3em;
	color: #fff;
	text-decoration: none;
}

.thumbnail {
	max-width: 100%;
}

.thumbnail-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

