body {
	
	display: flex;
	background-color: #f4f4f4;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-image: url('almondblossoms.jpg');
	
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-card {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	width: 300px;
	text-align: center;
	padding: 20px;
	margin: 10px;
	transition: transform 0.3s ease;
}
	
.product-card img {
	width: 100%;
	border-radius: 10px;
}

.product-card h2 {
	font-size: 1.5rem;
	color: #333;
	margin-top: 15px;
}

.product-card .price {
	font-size: 1.2rem;
	color: #238299;
	margin: 10px 0;
}

.product-card .description {
	font-size: 1rem;
	color: #555;
	margin-bottom: 15px;
}

.product-card .btn {
	background-color: #1d3557;
	color: #fff;
	text-decoration:none;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.product-card .btn:hover {
	background-color: #457b9d;
	}