.enlace{
    /* text-align: right; */
    /* align-content: center; */
    /* border-bottom: solid 1px #212A55; */
    display: flex;
    justify-content: end;
    background-color: rgb(226, 233, 255);
}

.enlace a{
    background-color: #212A55;
    border-radius: 20px;
    font-size: 25px;
    border: solid 1px #212A55;
    padding: 5px;    
    /* box-shadow: 3px 3px 2px 0px rgba(48, 37, 128, 1); */
    animation-duration: 4s;
    animation-name: botAnim;
    animation-iteration-count: infinite;
}

@keyframes botAnim {
    from{
        background-color: #212A55;
        color: white;
    }
    to{
        background-color: white;
        color: #212A55;
    }
}

.enlace a:hover{
    color: #212A55;
    background-color: white;
}

.ocultar{
    display: none;
}


@media (max-width:399px) and (min-width: 320px) {
    .enlace a{
        text-align: center;
        font-size: 20px;
    }
}
