body{
    background-color: hsl(30, 38%, 92%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    
}
.boton-carrito{
    width: 90%;
    background-color: hsl(158, 36%, 37%);
    border: none;
    color: hsl(0, 0%, 100%);
    border-radius: 10px;
    align-self: center;
    font-weight: bold;
    padding: 1.0rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
}
.boton-carrito:hover{
    background-color: hsl(159, 39%, 19%);
}
.tipo{
    align-self: flex-start;
    text-transform: uppercase;
    color: gray;
    font-family: 'Montserrat', sans-serif;
}
.encabezado{
    color: hsl(212, 21%, 14%);
    font-family:  'Fraunces', serif;
    font-weight: 700;
}
.descripcion{
    color: gray;
    font-family: 'Montserrat', sans-serif;
}
.precios{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 1rem;
}
.precio{
    color: hsl(158, 36%, 37%);
    font-family: 'Fraunces', serif;
}
.precio-antes{
    text-decoration: line-through;
    color: gray;
    font-family: 'Montserrat', sans-serif;
}
.container{
    width: 90vw;
    max-width: fit-content;
    height: 90vh;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    
}

.contenido{
    padding: 2.0rem 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}


.img{
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
    background-image: url(./images/image-product-mobile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 992px){
    .container{
        width: 40vw;
        height: 50vh;
        flex-direction: row;
        overflow-y: auto;
    }
    .img{
        background-image: url(./images/image-product-desktop.jpg);
        border-radius: 10px 0px 0px 10px;
    }
    .contenido{
        height: 80%;
        justify-content: space-around;
    }

}