Buy Now Button
Product Name
A brief description of the product.
$99.99
{
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.product-container {
background-color: #fff;
border: 1px solid #ddd;
padding: 20px;
width: 300px;
text-align: center;
}
.product-image {
width: 100%;
height: auto;
}
.product-name {
font-size: 24px;
font-weight: bold;
}
.product-description {
font-size: 14px;
color: #666;
}
.product-price {
font-size: 20px;
color: #333;
margin: 10px 0;
}
.buy-now-button {
background-color: #28a745;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}
.buy-now-button:hover {
background-color: #218838;
}