body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    margin: 0;
}

.product {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 100px rgba(75, 16, 16, 0.1);
    text-align: center;

}

button {
    background-color: #970c97;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;

}