You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
853 B

1 month ago
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
width: 80%;
max-width: 600px;
}
h1 {
color: #333;
}
.product-image {
width: 100%;
height: auto;
border-radius: 10px;
margin: 20px 0;
}
p {
color: #666;
font-size: 16px;
line-height: 1.5;
}
.benefits {
list-style: none;
padding: 0;
}
.benefits li {
background: #e0e0e0;
margin: 10px 0;
padding: 10px;
border-radius: 5px;
color: #333;
font-size: 14px;
}
.price {
color: #ff5722;
font-size: 24px;
font-weight: bold;
}