.gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}

.gallery a {
	width: 26rem;
	height: 18rem;
	margin: 2rem;
	border-radius: 0.5rem;
	overflow: hidden;
}

.gallery a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s;
}

.gallery a img:hover {
	transform: scale(1.3);
}