#mainInfo img{
    border: 6px ridge white;
    /*filter: brightness(1.1) saturate(1.2); /* premium */
    /*border-color: #9d8400; /* premium */
    margin-bottom: 9px;
}
#beta{
    transform: translateY(-13px) rotate(6deg);
    color: #db0b2f !important;
    font-size: larger;
    margin: 0;
}
#btnInfo{
    position: fixed;
    right: 0;
    bottom: 0;
    width: 3em;
    margin: 1em;
}
.infoButtons{
    /*border: 1px solid red;*/
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    /*margin-top: 15px;*/
    position: relative;
    bottom: -15px;
}
.infoButtons button{
    transform: scale(1.3) rotateX(-28deg);
    box-shadow: inset 0px -4px 16px black;
}
.infoButtons button:hover{
    transform: scale(1.3) rotateX(0deg);
    box-shadow: 0px 0px 0px black;
}
#btnLogin{
    background-color: cornflowerblue;
}
#btnAddToServer{
    background-color: brown;
    margin-right: 9px;
}

/* ASPECTO EN MÓVIL */
@media all and (max-width: 767px){
    .infoButtons{
        flex-direction: column;
        bottom: 0;
    }
    .infoButtons button{
        width: 80%;
        margin: 10px;
    }
    #btnAddToServer{
        margin-right: revert-rule;
    }
}