@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background-color: hsl(30, 38%, 92%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Montserrat", sans-serif;
}
.card{
    display: flex;
    width:40vw;
    height: 60vh;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
}
.left{
    width:20vw;
}
.left img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0px 0px 20px;
}
h2{
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 38px;
}
.right{
    display: flex;
    flex-direction: column;
    padding: 20px;
    width:20vw;
    justify-content: space-between;
}
.perfume{
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 500;
    color: hsl(228, 12%, 48%);
}
h3{
    color: hsl(158, 36%, 37%);
    font-size: 42px;
    font-family: "Fraunces", serif;
}
p{
    color: hsl(228, 12%, 48%);
    font-size: 12px;
}
.prices{
    display: flex;
    align-items: center;
    gap: 5px;
}
.prices p{
    text-decoration: 1px solid black line-through;
    color: hsl(228, 12%, 48%);
}
button{
    background-color: hsl(158, 36%, 37%);
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
}