footer {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer a {
    font-family: 'Lemonada', cursive;
    text-decoration: none;
    text-align: center;
    margin: auto;
    padding: 5px;
    border: 3px solid #ff0101;
    color: #ff0101;
    cursor: pointer;
    font-size: 15px;
}

.footer-button:hover {
    text-decoration: none;
    cursor: pointer;
    color: white;
    border: 3px solid white;
    transition: 200ms linear;
}

footer a img {
    height: 50px;
    width: 50px;
    margin: auto;
}

.admin-button {
    display: flex;
    justify-content: center;
    border: none;
    padding: 0px;
    text-align: center;
    height: 100px;
    width: 100px;
    opacity: 0%;
    transition: 0.5s;
}

.admin-button:hover {
    opacity: 100%;
}

.disabled {
    cursor: not-allowed;
}

.disabled:hover {
    color: #ff0101;
    text-decoration: none;
}

.rotary-button {
    outline: 2px solid #ff0101;
}