.gallery-page {
	background-color: var(--bg-1);
}

.gallery-page__content {
	text-align: center;
}

.gallery-page__content .text {
	margin: 2rem 12rem;
}
@media (max-width: 1200px) {
	.gallery-page__content .text {
		margin: 2rem 0rem;
	}
}

.gallery-page__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1/1;
	transition: .3s;
	border-radius: var(--radius-3);
}
.gallery-page__image a:hover img {
	filter: brightness(.6);
}