.todo{
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient( to bottom, #454852, #000000);
    min-height: 120vh;
}
.base{
    background-color: greenyellow;
    margin-top: 15px;
    height: 90px;
}
.imagen{
    background: -moz-linear-gradient(transparent, honeydew);
}
img{
    /*background-color: honeydew;*/
    height: 250px;
    width: 400px;
}
/*.contenido{
    background-color: #d5d5db;
}
*/
.basico{
    background-color: whitesmoke;
    min-height: 55vh;
}

.standard{
    background-color: lightseagreen;
    min-height: 55vh;
}

.elite{
    background-color: limegreen;
    min-height: 55vh;
}
.premium{
    background-image: url("../imagenes/Oro.png");
    min-height: 55vh;
}
 ul{
    float: left;
}
body{
    text-align: center;
    font-family: sans-serif;
}

/* Aqui empieza codigo de pantalla de pro*/

.modal {
    width: 100%;
    height: 110vh;
    background: rgba(0,0,0,0.8);

    position: static;/* static o inherit*/
    top: 0;
    left: 0;

    display: flex;

    animation: modal 1s 1s forwards;
    visibility: hidden;
    opacity: 0;
}

.contenido2{
    margin:auto;
    width: 40%;
    height: 60%;
    background: white;
    border-radius: 20px;
}


#cerrar{
    display: none;

}

.carrito{
    width: 45%;
    height: 50%;

}

#cerrar + label {
    position:fixed;
    color:#fff;
    font-size: 25px;
    z-index: 150;
    background: darkblue;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    right: 10px;
    cursor: pointer;

    animation: modal 1s 1s forwards;
    visibility: hidden;
    opacity: 0;
}
#cerrar:checked + label, #cerrar:checked ~ .modal{
    display: none;
}

@keyframes modal{
    100%{
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (max-width: 800px){
    .contenido2{
        width: 80%;
    }
    .modal{
        min-height: 110%;
    }
    .letras{
        font-size: 120%;
    }
    .letras1{
        font-size: 150%;
    }
    .todo{
        width: 100%;
        height: 100%;
        background: -moz-linear-gradient( to bottom, #454852, #000000);
    }
    .imagen{
        background: -moz-linear-gradient(transparent, honeydew);
    }
}