:root {
	--header-bg-color: #18171f;
	--footer-bg-color: #18171f;
	--page-bg-color: #22212c;
	--primary-color: #d52a4c;
	--primary-color-hover: #cf4d35;
	--secondary-color: #1db76f;
	--secondary-color-hover: #1aa463;
}

.image-grid-wrap .img-link {
	display: block;
	overflow: hidden;
	border-radius: 0.375rem;
}

.image-grid-wrap .img-link img {
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.image-grid-wrap .img-link:hover img {
	transform: scale(1.08);
	box-shadow: 0 0 12px var(--primary-color);
}

#burgerBg {
	display: none;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.img-cov.a {
	max-width: 200px;
}

.img-cov.m {
	max-width: 500px;
}

.footer__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
}
.footer__list li a {
	color: white;
	text-decoration: none;
}
.footer__list li a:hover {
	color: #d52a4c;
}
@media (max-width: 768px) {
	#burgerBg.show {
		display: block;
	}
}
