.gallery {
	overflow: hidden;
	border-radius: 25px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-self: center;
	align-items: center;
}

.gallery-box {
	background-color: var(--window);
	border-radius: 25px;
	grid-column: span 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 25px;
	object-fit: cover;
	transition: all .3s ease;
}

.gallery-img:hover {
	transform: scale(1.2);
}