@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Montserrat:wght@500;700&display=swap');


/*font-family: 'Fraunces', serif;
font-family: 'Montserrat', sans-serif;*/

body {
    background-color: hsl(30, 38%, 92%);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

* {
    margin: 0;

}

.container {
    display: flex;
    margin: auto;
    margin-top: 150px;
    border-radius: 20px;
    width: 500px;
    height: 380px;
}

.product {
    width: 60%;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.product img {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;

}

.text {
    padding: 30px;
    background-color: hsl(0, 0%, 100%);
    width: 40%;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 12px;
    color: hsl(228, 12%, 48%);

}

.text h2 {
    color: hsl(212, 21%, 14%);
    line-height: 1em;
    font-size: 28px;
    font-family: 'Fraunces', serif;
}

p.current-price {
    color: hsl(158, 36%, 37%);
    font-family: 'Fraunces', serif;
    font-size: 25px;
}

.par {
    font-size: 12px;
    line-height: 1.2em;
    color: hsl(228, 12%, 48%);
}

p.old-price {
    color: hsl(228, 12%, 48%);
    text-decoration: line-through;
}

.price {
    display: flex;
    align-items: center;
}

.btn {
    width: 190px;
    height: 40px;
    background-color: hsl(158, 36%, 37%);
    border-style: solid;
    border-color: hsl(158, 36%, 37%);
    border-radius: 5px;
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    cursor: pointer;
}
.btn img{
    padding-right: 4px;
}

.btn:hover{
    background-color: hsl(158, 80%, 28%);
}