.photos {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.photos img {
	cursor: zoom-in;
}
.photos > img {
	margin: 10px;
}
.photos > div > img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.photos div {
	align-self: center;
}
.photos p {
	text-align: center;
}
#modal {
	display: none;
	z-index: 1;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
}
#modal img {
	width: inherit;
	height: inherit;
	object-fit: scale-down;
}
#close {
	position: absolute;
	top: 10px;
	right: 20px;
	padding: 20px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
}
#close:hover, #close:focus {
	color: #bbb;
	cursor: pointer;
}