main section{
    border-left: 3px black;
    border-right: 3px black;
}

main section div{
    margin-left: auto;
    margin-right: auto;
}

main section div a{
    text-decoration: none;
    border: 3px solid #254cd0;
    border-radius: 10px;
    padding: 5px;
    color: black;
    background-color: #5E8198;
}

main section div a:active{
    text-decoration: none;
    border: 3px solid black;
    border-radius: 10px;
    padding: 5px;
    color: #a4c9f9;
    background-color: #437eee;
}

main section div a:hover{
    color: #a4c9f9;
}
/*Escritorio*/
@media (min-width: 991px) {
    .separadormovil{
        display: none;
    }
    a .material-symbols-outlined{
        display: none;
    }
}
/*Celular*/
@media (max-width: 767px) {
    main section div a{
        display: inline-block;
        margin-bottom: 5px;
    }
    .textbutton{
        display: none;
    }
    /*
    .download{
        padding: 2px;height: 25px;
        border-top: 100%;
    }
    */

}

/**Tablet**/

@media (min-width: 768px) and (max-width: 990px) {
    main section div a{
        display: inline-block;
        margin-bottom: 5px;
    }
    .download .material-symbols-outlined{
        display: none;
    }
}