
/*TODO Add flexbox prefixing, for different browsers: https://css-tricks.com/snippets/css/a-guide-to-flexbox/*/
/*TODO Pin to bottom of window, when body is smaller than view height*/
/*Main <footer> element*/
.footer_contact_info {
    width: 100%;
    background-color: #3D5A80;
    display: flex;
    flex-flow: row;
    justify-content: center;
    padding: 10px 0 10px 0;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 -8px 16px 0 rgba(0, 0, 0, 0.3);
}
.footer_contact_info div {
    display: flex;
    flex-flow: column;
}

.footer_contact_info div p {
    text-align: center;
    color: #ffffff;
    margin: 3px 0 3px 0;
}

/*
.footer_contact_info p {
    justify-content: center;
}*/
