*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
}

body{
    width: 100vh;
    height: 100vh;
    background-color: #F3EAE5;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.card{
    width: 700px;
    height:500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    margin-bottom: 10px;
}

.izq{
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
}

.izq img{
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.der{
    width: 50%;
    height: 100%;
    float: right;
    background-color: white;
    border-radius: 0 10px 10px 0;
    text-align: start;
    padding: 7%;
}

.imgMovil{
    display: none;
}

.attribution{
    clear: both;
}

h3{
    font-weight: lighter;
    color: grey;
    letter-spacing: 5px;
    font-size: 16px;
}

h1{
    margin-top: 30px;
}

p{
    margin-top: 30px;
    color: grey;
    font-size: 18px;
}

.precios{
    margin-top: 30px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    display: flex;
}

h4{
    color: #3C8168;
    font-size: 30px;
}

span{
    color: grey;
    text-decoration:line-through;
    font-size: 18px;
    margin-left: 15px;
}

button{
    margin-top: 30px;
    background-color: #3C8168;
    color: white;
    border: none;
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

@media (max-width:800px){
    body{
        width: auto;
        height: auto;
    }
    .card{
        width: 400px;
        height:200px;
    }
    .izq{
        width: 100%;
        height: auto;
        clear: both;
        
    }
    .imgDesktop{
        display: none;
    }
    .imgMovil{
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px 10px 0 0;
    }
    .der{
        width: 100%;
        height: auto;
        clear: both;
    }
}

@media (max-width:632px){
    body{
        text-align: start;
    }
    .card{
        margin: auto;
    }
}