/* CSS Document */
footer
{
    text-align: center;
    padding-top: 20px;
    font-weight: 400;
    font-size: 15px;
}

.footer-copyright
{
    overflow: hidden;
    min-height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0px;
    color: rgba(255,255,255,0.8);
    background-color: rgba(51,51,51,0.08);
}

a.footer
{
    color: lightskyblue;
    text-decoration: none;
}

a.footer:hover
{
    color: royalblue;
    text-decoration: underline;
}