*{
    margin: 0;
    padding: 0;
}

body{
background-color: hsl(30, 38%, 92%) ;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container{
    background-color: hsl(0, 0%, 100%);
    width: 85vh;
    height: 65vh;
    border-radius: 5%;
    display: flex;
    flex-direction: row;
}
.imagen{
    width: 50%;
}
.imagen .desktop{
    width: 100%;
    height: 100%;
    border-radius:5% 0 0 5%;
}
.information{
    width: 50%;
    margin-left:30px;
    margin-top: 20px;
}

.information span{
   color: hsl(228, 12%, 48%);
   font-size: 1.5em;
}

.information h1{
    margin-top: 10px;
    width: 90%;
    font-size: 2.3em;
    color: hsl(212, 21%, 14%);
    font-family: 'Fraunces', sans-serif;
}

.information-p{
    width: 80%;
    color: hsl(228, 12%, 48%);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.precio{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}
.precio .actual-precio{
    font-size: 2em;
  width: 60%;
  color: hsl(158, 36%, 37%);
  font-weight: bold;
  font-family: 'Fraunces', sans-serif;
}

.precio .precio-pasado{
    color: hsl(228, 12%, 48%);
    padding-top: 12px;
    text-decoration: line-through;
}

.add-cart{
    margin-top: 20px;
    width: 80%;
    padding: 13px;
    border-radius: 3px;
    border: none;
    background-color: hsl(158, 36%, 37%);
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.add-cart:hover{
    background-color: hsl(158, 31%, 43%);
}
.fa-shopping-cart{
    padding-right: 5px;
}

.movil{
    display: none;
}