body {
    background-color: #181a1b;
    font-family: sans-serif;
    margin: 0;
    color: #e8e6e3
}

#main {
    text-align: center;
}

#centrado {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
    font-weight: bold;
}

.editar {
    color: #4CAF50;
}

.editar:hover {
    color: #77cb7b;
}

.eliminar {
    color: #ff3c3c;
}

.eliminar:hover {
    color: #ff7b7b;
}

td {
    padding: 10px;
}

table, th, td {
    border-collapse: collapse;
    border-bottom: 1px solid #ffffff59;
}

#centrado table {
    margin-left: auto;
    margin-right: auto;
}

th {
    padding: 10px;
}

#back {
    margin-top: 20px;
    background-color: gray;
    padding: 5px;
    color: wheat;
}

#back:hover {
    background-color: #5f5f5f;
    color: white;
}

footer {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6vw;
}

a .fa-twitch {
    font-size:28px;color:#6441a5
}

#discord {
    padding: 15px 30px 15px 30px;
    border-radius: 10px;
    margin: 10px;
    background-color: #5865F2;
    display: inline-block;
}

#discord:hover {
    animation: discordIn 0.2s ease forwards;
    color: #ffffff;
}

#discord:not(:hover) {
    animation: discordOut 0.2s ease forwards;
}

#discord:active {
    animation: discordOut 0.2s ease forwards;
}

@keyframes discordIn {
    to {
        background-color: #7289da;
        color: #ffffff;
    }
}

@keyframes discordOut {
    from {
        background-color: #7289da;
        color: #929292;
    }

    to {
        background-color: #5865F2;
        color: rgb(24, 24, 24);
    }
}