body{
    background-color: hsl(30,38%,92%);
    min-height: 100vh;
    font-size: 14px;
    font-family: "Montserrat",sans-serif;
    color: hsl(228,12%,48%);
}
h1
{
    font-family: "Fraunces",serif;
    color: hsl(212,21%,14%);
    font-size: 2rem;
}
main
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    
}
section
{
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    width: 600px;
    height: 600px;
    
}
img {
    
    
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
   }
   .category {
    
    letter-spacing: 4px;
}
p{
    line-height: 1.5;
    font-weight: 400;
    
}


.product-desc {
    padding: 35px;
    background-color:azure;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.prices {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.sale-price
{
    font-family: "Fraunces", serif;
    color:hsl(158, 36%, 37%);
    font-size: 1.7rem;
    margin-right: 20px;
}
.list-price
{
    text-decoration: line-through;
}
button {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    background-color: hsl(158, 36%, 37%);
    color: hsl(0, 0%, 100%);
    padding: 20px;
    border-style: none;
    border-radius: 10px;
    height: 50px;
    width: 100%;
}


button:hover {
    background-color: hsl(158, 45%, 20%);
}
button:active {
    background-color: hsl(158, 45%, 20%);
}
.fa-cart-shopping {
    margin-right: 10px;
}