#footer {
    padding: 1rem 6rem;
}

#footer a {
    color: var(--black);
}

#footer-container {
    margin: 4rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style-type: none;
}

.footer-head {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.footer-head a {
    font-weight: 600;
    color: var(--color-2);
}

.social-media-links {
    margin-top: 0.6rem;
}

.credits-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.credits {
    font-size: 0.7rem;
    text-align: center;
}

.social-media-links a {
    color: var(--black);
    margin-right: 8px;
}

.footer-column {
    list-style-type: none;
    padding: 0
}

.footer-column li {
    margin-top: 0.4rem;
}



#rge-logo-img {
    margin-top: 0.7rem;
    margin-left: 9px;
}


@media all and (max-width: 900px) {
    #footer {
        padding: 2rem;
    }

    #footer-container {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .footer-column {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .credits-container {
        justify-content: center;
    }


}