#footer {
    background-color: var(--primary-color);
    /*border: solid 1px red;*/
}
#footer_container {
    height: 100px;
    /*border: solid 3px black;*/
}
#footer_content {
    display: flex;
    flex-direction: column;
    /*border: solid 1px white;*/
}
#footer_content_link  {
    margin: 30px;
    /*border: solid 1px black;*/
}
#footer_content_link a {
    margin: 11px;
    color: var(--white-color);
}
@media only screen and (min-width: 576px) {
}
@media only screen and (min-width: 900px) {
}
@media only screen and (min-width: 1240px) {
    #footer_content {
        flex-direction: row;
    }
    #footer_content_link a {
        margin: 30px;
        color: var(--white-color);
    }
}