body {
    display: flex;
    justify-content: space-around;
    background-color: #fe8c8c;
}

.product-container {
    width: 400px;
    padding: 20px;
    border: 10px solid #000;
    margin: 15px;
    background-color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.product-description {
    font-size: 16px;
    color: #333;
}
