body { font-family: 'Montserrat', sans-serif; background-color: #f4f4f4; color: #333; text-align: center; padding: 50px; } h1 { font-size: 48px; margin-bottom: 20px; } .product { background-color: white; border: 1px solid #ddd; border-radius: 10px; padding: 20px; width: 250px; margin: 0 auto; /* Center the product */ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .product img { max-width: 100%; border-radius: 10px; } .btn { display: inline-block; background-color: black; color: white; padding: 10px 15px; border: none; border-radius: 5px; text-decoration: none; font-size: 16px; transition: background-color 0.3s; } .btn:hover { background-color: #444; } p { font-size: 18px; color: #666; } h2 { font-size: 24px; margin-bottom: 10px; }