.thumbnail {
    color: white;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}
.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	position: relative;
	text-align: center;
}
.modal-content img {
	height: 85vh;
	width: auto;
}
.modal-content p {
	font-size: 12px;
	margin-top: 10px;
}
.close {
	position: absolute;
	right: 10px;
	color: white;
	border: none;
	border-radius: 3px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}