.center img {
	border-radius: 8px;
	filter: drop-shadow(var(--shadow));
}

img-caption {
	display: block;
	background-color: white;
	padding: 10px 20px;
	text-align: center;
	border-left: 1em solid var(--color-primary);
	box-shadow: var(--shadow);
}

.center img-caption {
	transform: translateY(-60%);
	margin: 0 20px;
}

.imgs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-end;
	gap: 50px;
}

.imgs>div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.imgs img {
	max-height: 200px;
	object-fit: contain;
}

#gallery_sec .grid {
	margin-top: 40px;
	gap: 40px;
}

#gallery_sec .grid img {
	width: 200px;
	aspect-ratio: 5/3;
	border-radius: 8px;
}

#size_sec .bg {
	border-radius: 8px;
	padding: 20px;
	background-color: #FBE5BA;
	gap: 20px;
}

#size_sec .bg h3 {
	margin-bottom: 10px;
}

@media (min-width:500px) {
	.center {
		padding: 0 60px;
	}

	.center img-caption {
		transform: translate(-40px, -60%);
		margin: 0;
	}
}