@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 100;
    src: url(OpenSans-Regular.ttf) format('truetype');
}

body {
    font-family: 'Open Sans';
    background: #000000;
    font-size: 18px;
}

.footer {
    position: fixed;
    z-index: 299;
    bottom: 0px;
    width: 100%;
    display: flex;
    height: 80px;
    background: #000000;
    border-top: 1px solid #77ff00;
}

.footer .contact {
    display: flex;
    margin-left: 18px;
    color: #898fa0;
    font-size: 14px;
    flex-basis: 0;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1
}

.footer .licence {
    display: flex;
    font-size: 14px;
    color: #898fa0;
    flex-basis: 0;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1
}

.footer .licence a {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    color: #898fa0;
    justify-content: center;
    align-items: center
}

.footer .licence a img {
    width: 100%;
    height: 100%
}

@media screen and (max-width:600px) {
    .footer {
        flex-direction: column-reverse;
        padding-top: 20px;
    }

    .footer .contact {
        margin: auto
    }

    .footer .licence {
        margin: auto;
    }

    .footer .licence a {
        margin-bottom: 10px
    }
}
