@charset "utf-8";

footer.footer {
    font-size: 0.9rem;
    color: lightgrey;
    line-height: 1.4;
    background-color: #0000FF;
    padding: .5rem 0;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:flex;

}
div.footer_left{
    width: 30%;
    text-align:left;
    padding-left: .75rem;
}
div.footer_middle{
    width:  40%;
    text-align: center;
}
div.footer_right{
    flex-basis: 30%;
    text-align:right;
    padding-right: .75rem;
}

@media screen and (max-width: 540px){
    footer{
        font-size: 0.7rem;
    }

}
@media screen and (max-width: 465px){
    footer{
        font-size: 0.6rem;
    }
}

