.prestore-container {
	display: flex;
	justify-content: center;
	background-color: #303030;
	width: 100%;
	height: fit-content;
}
.prestore-inner {
	width: 80%;
	padding: 30px 0;
}
.prestore-top {
	width: 100%;
	text-align: center;
	padding: 0 0 20px 0;
}
.prestore-content {
	display: flex;
	padding: 20px 0;
	width: 100%;
	gap: 15px;
}
.prestore-row {
	padding: 5px 0;
}
.prestore-header {
	font-size: 2rem;
	color: white;
}
.prestore-text {
	font-size: 1rem;
	color: white;
}
.prestore-each {
	width: 100%;
	height: auto;
	aspect-ratio: 4/5;
	border-radius: 5px;
	background-color: white;
	transition: all 0.2s ease;
	background-image: url(https://placehold.co/400x500);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow:
		inset -3px -3px 5px rgba(0, 0, 0, 0.5),
		inset 3px 3px 5px rgba(0, 0, 0, 0.5),
		15px 15px 25px rgba(0, 0, 0, 0.5),
		-15px -15px 25px rgba(0, 0, 0, 0.5);
}
.prestore-each:hover {
	transform: translateY(-10px);
}

@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
	.prestore-content {
		gap: 30px;
	}
	.prestore-row {
		padding: 5px 0;
	}
	.prestore-header {
		font-size: 3rem;
		color: white;
	}
	.prestore-text {
		font-size: 1.4rem;
		color: white;
	}
}
