body {
    font-family: Arial, sans-serif;
    background-color: #343a40;
    color: white;
    margin: 0;
    padding: 20px;
}

.product-container {
    max-width: 400px;
    margin: auto;
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-title {
    font-size: 24px;
    margin: 10px 0;
}

.product-description {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.product-price {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.add-to-cart {
    background-color: goldenrod;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 1s;
}

.add-to-cart:hover {
    background-color: black
}

.cart-message {
    margin-top: 10px;
    font-size: 16px;
    color: #28a745;
}

.product-img {
    height: 60%;
    width: 60%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

h2 {
    margin: 0;
}

.description-product {
    font-size: 16px;
    line-height: 1.5;
}

.product-img-foot {
    height: 40%;
    width: 40%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    padding: 10px 0;
    text-align: center;
}

.footer a {
    color: black;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}