*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body, html{
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-rows: 1fr;
    height: 100%;
}
.container{
    background-color: #2a4f9f; /* Used if the image is unavailable */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    width: 100%;
}
#logo{
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-top: 3%;
}
.shadow{
    width: 60%;
}
#boton{
    display: flex;
    justify-content: center;
    margin-top: 1%;
}
 .espacio{
        margin-top:500px;
    }
.button{
    background-color: white;
    border: none;
    color: #325BA7;
    padding: 15px 32px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 32px;
    border-radius: 48px;
    height: 80px;
}
.button:hover{
    box-shadow: 3px 3px rgba(74,101,173,1) , 6px 6px 0px rgba(172,222,249,1);
}
@media screen and (max-width: 810px){
    .container{
        background-image: url("img/BG_md.jpg");
        background-color: #4B70AD; /* Used if the image is unavailable */
        background-position: center; /* Center the image */
        background-repeat: no-repeat; /* Do not repeat the image */
        background-size: cover; /* Resize the background image to cover the entire container */
        width: 100%;
    }
    #logo{
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 8%;        
    }
    .shadow{
        width: 90%;
    }
    #boton{
        display: flex;
        justify-content: center;
        margin-top: 4%;
    }
    .button{
        background-color: white;
        border: none;
        color: #325BA7;
        padding: 15px 32px;
        text-align: center;
        line-height: 35px;
        text-decoration: none;
        display: inline-block;
        font-size: 22px;
        border-radius: 48px;
        height: 65px;
    }
}
@media screen and (max-width: 600px){
    .container{
        background-image: url("img/BG_sm.jpg");
        background-color: #4B70AD; /* Used if the image is unavailable */
        background-position: center; /* Center the image */
        background-repeat: no-repeat; /* Do not repeat the image */
        background-size: cover; /* Resize the background image to cover the entire container */
        width: 100%;
    }
    .espacio{
        margin-top:850px;
    }
    #logo{
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10%;
    }
    .shadow{
        width: 90%;
    }
    #boton{
        display: flex;
        justify-content: center;
        margin-top: 4%;
    }
    .button{
        background-color: white;
        border: none;
        color: #325BA7;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 22px;
        border-radius: 48px;
        height: 40%;
        width: 70%;
    }
}
@media screen and (max-width: 428px) {
    #logo{
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15%;        
    }
    #boton{
        margin-top: 8%;
    }
    .button{
        background-color: white;
        border: none;
        color: #325BA7;
        padding: 5px 32px;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 18px;
        border-radius: 48px;
        height: 50px;
        width: 60%;
    }
    #separador{
        height: 200px;
    }
}
@media screen and (max-width: 414px) {
    #logo{
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15%;        
    }
    #boton{
        margin-top: 6%;
    }
    .button{
        background-color: white;
        border: none;
        color: #325BA7;
        padding: 5px 32px;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 18px;
        border-radius: 48px;
        height: 50px;
        width: 62%;
    }
}
@media screen and (max-width: 390px) {
    #logo{
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15%;        
    }
    #boton{
        margin-top: 8%;
    }
    .button{
        background-color: white;
        border: none;
        color: #325BA7;
        padding: 5px 32px;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 18px;
        border-radius: 48px;
        height: 50px;
        width: 70%;
    }
}
@media screen and (max-width: 360px) {
    #logo{
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15%;        
    }
    #boton{
        margin-top: 10%;
    }
    .button{
        background-color: white;
        border: none;
        color: #325BA7;
        padding: 5px 32px;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 18px;
        border-radius: 48px;
        height: 50px;
        width: 80%;
    }
}
@media only screen 
    and (device-width : 414px) 
    and (device-height : 896px) 
    and (-webkit-device-pixel-ratio : 2) { 
        #logo{
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 15%;        
        }
        #boton{
            margin-top: 10%;
        }
        .button{
            background-color: white;
            border: none;
            color: #325BA7;
            padding: 5px 32px;
            text-align: center;
            line-height: 20px;
            text-decoration: none;
            display: inline-block;
            font-size: 18px;
            border-radius: 48px;
            height: 50px;
            width: 80%;
        }
    }
