-0,0 +1,121 @@
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&display=swap');
*{
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body{
    background-color: hsl(30, 38%, 92%);
    height: 100vh;
}

h1{
    font-family: 'Fraunces', serif;
    padding-top: 1rem;
}

p{
    font-size: 14px;
    color: hsl(287, 8%, 23%);
    padding-top: 1rem;
}

.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.perfume{
    color: rgb(48, 43, 53);
    letter-spacing: .4rem;
    font-size: 12px;
}

button{
    display: block;
    width: 100%;
    border: 0cm;
    padding: 1rem;
    color: hsl(0, 0%, 100%);
    background-color: hsl(158, 36%, 27%);
    border-radius: .5rem;
    font-weight: 700;
}

.img img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem 0 0 1rem;
}

.cart{
    display: flex;
    width: 650px;
    height: 450px;
    border-radius: 1rem;
}

.description{
    background-color: hsl(0, 0%, 100%);
    padding: 1.5rem;
    width: 45%;
    border-radius: 0 1rem 1rem 0;
}

.price{
    padding: 1rem 0 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.price .offer{
    color:hsl(158, 36%, 27%);
    font-family: 'Fraunces', serif;
    font-size: 32px;
}

.price .normal-price{
    color: hsl(228, 12%, 48%);
    text-decoration: line-through;
}

.attribution{
    font-size: small;
    padding: .5rem;
}

.botton:hover{
    background-color: hsl(212, 21%, 14%);
}

@media (max-width:375px), (orientation: portrait){
    .img .img-desktop{
        display: none;
    }

    .cart{
        flex-direction: column;
        width: 90%;
        height: 90%;
    }

    .description{
        width: 100%;
    }

    .attribution{
        font-size: small;
    }
}