body {
	background-color: #CBDEF2;
	text-align: center;
	font-family: arial;
}

h1 {
	color: #7580B8;
}

.masonry-container {
	max-width: 2000px;
	margin: 0 auto;
}

.masonry-grid {
	column-count: 4;
	column-gap: 20px;
}

.masonry-item {
	max-width: 350px;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	break-inside: avoid;
	margin-bottom: 20px;
	display: inline-block;
	width: 100%;
}
.masonry-item:hover {
	transform: translateY(5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1500px) {
	.masonry-grid {
		column-count: 3;
	}
}

@media (max-width: 992px) {
	.masonry-grid {
		column-count: 2;
	}
}

.button {
	max-width: 100%;
}

.button:hover {
	transform: translateY(2px);
}

.price {
	max-width: 300px;
	border-style: solid;
	border-color: #777;
	border-radius: 5px;
	margin-top: 2em;
	background-color: #efefef;
}

.amount {
	color: maroon;
	font-size: 1.25em;
}

.container {
	display: grid; 
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr) );
}
@media (max-width: 640px) {
	.masonry-grid {
		column-count: 1;
	}
	.price {
		max-width: 150px;
		margin-top: .75em;
	}
	.amount {
		font-size: 1.05em;
	}
}

