*{
    margin: 0;
}
body{
    background-color:hsl(30, 38%, 92%);
}
img{
    width: 325px;
    border-radius: 10px 10px 0px 0px;
}
.contenido{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
}
.descripcion{
    margin: 20px;
}
h1{
    color: hsl(212, 21%, 14%);
    margin-top: 10px;
    margin-bottom: 10px;
}
p{
    color: hsl(228, 12%, 48%); 
    margin-bottom: 10px; 
}
.may{
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
}
.descripcion p
{
    margin-right: 18px;
}
button{
    all: unset;
    background-color: hsl(158, 36%, 37%);
    width: 90%;
    padding: 10px;
    text-align: center;
    color: white;
    border-radius: 10px;
}
button:hover{
    background-color: hsl(158, 36%, 17%);
}
svg{
    margin-right:10px ;
}
.descripcion p+p{
    font-size: 50px;
}
.precio{
    display: flex;
    align-items: center;
    justify-items: center;
}
.precio p{
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:hsl(158, 36%, 37%);
}
span{
    color: hsl(228, 12%, 48%);  
    text-decoration:line-through;
}

@media(min-width:1000px){
    .contenido{
        display: flex;
        width: 600px;
        height: 450px;
    }
    .descripcion{
        margin: 30px;
    }
    h1{
        margin-right: 45px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .main p{
        margin-right: px;
        margin-bottom: 20px;
    }
    img{
        content: url('../img/image-product-desktop.jpg');
        border-radius: 10px 0 0 10px;
    }
    .precio p{
        font-size: 35px;
    }
    .precio{
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

