
/* Footer */
.footer {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    text-align: center;
    background: #77b1f3;
}
#social_links {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* border: solid 1px yellow; */
}
.footer_contact {
    width: 25%;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .footer {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
}
/* [class*="col-"] {
width: 100%;
} */