/** @format */

#lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
}

#lightbox-image {
	max-width: 80%;
	max-height: 80%;
}

#close-button {
	position: absolute;
	top: 20px;
	right: 20px;
	color: white;
	background: transparent;
	border: 0;
	font-size: 16px;
	cursor: pointer;
}
#photo-grid {
	width: 100vw;
	display: flex;
	flex-wrap: wrap;
}

.photo {
	width: 300px;
}

.photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#photo-grid {
	width: 800px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 20px;
	row-gap: 20px;
}
