*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body{
    height: 720px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3EAE3;
}

.box-main{
    width: 550px;
    height: 400px;
    display: flex;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: white;
    
}

.image-content{
    width: 265px;
    height: 400px;
    border-radius: 8px 0px 0px 8px;
    background-image: url("images/image-product-desktop.jpg");
    filter: brightness(80%);
    background-size: contain;
    background-repeat: no-repeat;
}

.box-content{
    width: 210px;
    height: 400px;
    margin-left: 30px;
}

h3{
   font-size: 11px;
   font-weight: 400; 
   margin-top: 30px;
   text-transform: uppercase;
   letter-spacing: 3px;
}

h1{
    font-size: 28px;
    font-weight: 700;
    margin-top: 18px;
    font-family: "Fraunces", serif;
    line-height: 28px;
}

p{
    font-size: 13px;
    margin-top: 18px;
    line-height: 20px;
}

.valor{
    display: flex;
    align-items: center;
}

.valor1{
    color: green;
    font-size: 30px;
    font-weight: 800;
    margin-top: 25px;
}

.valor2{
    margin-top: 30px;
    margin-left: 11px;
    font-size: 11px;
    text-decoration: line-through;
    
}

.valor1, .valor2{
    display: inline-block;
    font-family: "Fraunces", serif;
}

button{
    width: 220px;
    height: 45px;
    padding-left: 23px;
    background-color: #3D8168;
    border-radius: 8px;
    border: transparent;
    color: white;
    font-size: 13px;
    margin-top: 25px;
    font-weight: 700;
    background-image: url("images/icon-cart.svg");
    background-repeat: no-repeat;
    background-position: 60px;
    background-size: 12px;
}

button:hover{
    background-color: #1A4031;
    cursor: pointer;
}

.attribution { 
    font-size: 11px; text-align: center; 
    margin-top: 60px;
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media screen and (max-width: 620px){
    .box-main{
        width: 375px;
        height: 720px;
        margin-top: 100px;
        display: flex;
        flex-direction: column;
    }

    .image-content{
        width: 375px;
        max-height: 280px;
        background-size: cover;
        background-position: center;
        position: static ;
        border-radius: 8px 8px 0px 0px;
        
    }

    .box-content{
        width: 330px;
        margin-left: 20px;
    
    }

    h3{
        font-size: 15px;
        font-weight: 400; 
        margin-top: 30px;
        text-transform: uppercase;
        letter-spacing: 3px;
     }
     
     h1{
         font-size: 32px;
         font-weight: 700;
         margin-top: 18px;
         font-family: "Fraunces", serif;
         line-height: 30px;
     }
     
     p{
         font-size: 16px;
         margin-top: 18px;
         line-height: 20px;
     }
     
     .valor{
         display: flex;
         align-items: center;
     }
     
     .valor1{
         color: green;
         font-size: 38px;
         font-weight: 800;
         margin-top: 25px;
     }
     
     .valor2{
         margin-top: 30px;
         margin-left: 18px;
         font-size: 15px;
         text-decoration: line-through;
         
     }
     
     button{
         width: 330px;
         height: 60px;
         border-radius: 10px;
         font-size: 15px;
         background-position: 100px;
         background-size: 16px;
     }
}