<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

 
.container {
    display:flex;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: var(--white);
    width: 320px;
    
    border-radius: 32px;
    margin-top: 144px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.card-image img {
    width: 288px;
    height: auto;
    margin: 16px;
    border-radius: 16px;
}

.card .Perfume {
    font-family: Montserrat, Fraunces;
    text-transform: uppercase;
    color:hsl(228, 12%, 48%) ;
    letter-spacing: 2px;
}

.card .paragraph {
    font-family:   Fraunces;
    font-size:x-large ;
    font-weight: 900;

}
.card .paragraph-text {
    font-family: Montserrat, Fraunces;
    color:hsl(228, 12%, 48%) ;
    letter-spacing: 1px;
}

.span-price-1 {
    margin-left:5px ;
    color:hsl(158, 42%, 18%) ;
    font-size:x-large ;
    font-weight: bold;
}

.span-price-2 {
  
    color:hsl(228, 12%, 48%)  ;
    font-size: 13px ;  
    font-weight: lighter;
    text-decoration: line-through;  
}

.card .button {
    font-family: Montserrat, Fraunces;
    background-color: hsl(158, 36%, 37%);
    color:hsl(0, 0%, 100%) ;
    width:70% ;
    padding: 5px;
    margin:32px ;
    border-radius: 5px;
}

@media only screen and (min-width:576px) {
    .container {
        display:flex;
        justify-content: center;
        align-items: center;
    }
    .card {
        background-color: var(--white);
        width: 320px;
        
        border-radius: 32px;
        margin-top: 144px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }
    .card-image img {
        
        width: 288px;
        height: auto;
        margin: 16px;
        border-radius: 16px;
    }
}



@media only screen and (min-width:991px) {
    .container {
        display:flex ;
        flex-direction: row;
    }

    .card-image img {
        background-image: url(./images/image-product-desktop.jpg);
        width: 288px;
        height: auto;
        margin: 16px;
        border-radius: 16px; 
    }
    
}</pre></body></html>