/* Mobile Footer */
@media only screen and (max-width: 860px) {
    #footer {
        width: 100%;
        display: block;
        margin-top: 40px;
        margin-bottom: 40px;
        text-align: center;
        color: #AAAAAA;
    }

    #footer > * {
        display: flex;
        width: fit-content;
        background-color: rgba(24, 24, 24, 0.8);
        padding: 4px;
        border-radius: 4px;
        flex-direction: column;
        margin: auto;
    }

    #footer p {
        display: inline;
        margin: 4px;
    }

    #footer a {
        display: inline;
        text-decoration: none;
        transition: all linear 125ms;
        padding: 0 10px;
        color: #AAAAAA;
    }

    #footer a:hover {
        color: #0099E6; /* Originally #03ADDF */
    }
}


/* Desktop Footer */
@media only screen and (min-width: 860px) {
    #footer {
        display: block;
        margin-top: 60px;
        margin-bottom: 60px;
        text-align: center;
        color: #AAAAAA;
    }

    #footer > * {
        background-color: rgba(24, 24, 24, 0.8);
        padding: 4px;
        border-radius: 4px;
    }

    #footer p {
        display: inline;
        padding: 2px 10px;
    }

    #footer a {
        display: inline;
        text-decoration: none;
        transition: all linear 125ms;
        padding: 2px 10px;
        color: #AAAAAA;
    }

    #footer a:hover {
        color: #0099E6; /* Originally #03ADDF */
    }
}