* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(30, 38%, 92%);
    font-family: 'Montserrat', sans-serif;

}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    background-color: hsl(30, 38%, 92%)
}

.product-card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    width: 53%;
    margin: auto;
    margin-top: 20px;
}

.product-card img {
    width: 43%;
    border-radius: 10px;
}

.product-card .content {
    padding: 30px;
}

.product-card .content h2 {
    font-size: 10px;
    color: hsl(228, 12%, 48%);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-card .content h1 {
    color: hsl(212, 21%, 14%);
    margin-bottom: 0.5rem;
    font-family: 'Fraunces', serif;

    font-size: 45px;
}

.product-card .content p {
    font-size: 14px;
    color: hsl(228, 12%, 48%);
    margin-bottom: 1rem;
    width: 70%;
}

.product-card .content .price {
    font-size: 27px;
    color: hsl(158, 36%, 37%);
    font-weight: bold;
    font-family: 'Fraunces', serif;

    margin-bottom: 1rem;
}

.product-card .content .price2 {
    font-size: 0.875rem;
    color: hsl(228, 12%, 48%); 
    text-decoration: line-through;
    margin-left: 3.5rem;
}

.product-card .content .button {
    margin-top: 20px;
    background-color: hsl(158, 36%, 37%);
    color: hsl(0, 0%, 100%);
    padding: 10px 114px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.product-card .content .button:hover {
    background-color: hsl(158, 42%, 18%);
}

.product-card .content .button:active {
    background-color: hsl(157, 37%, 14%);
}