@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://weloveiconfonts.com/api/?family=entypo);
:root {
    --fs-navbar: 1rem;
    --img-logo: 35px;
}
@media (min-width: 40em) {
    :root {
        --fs-navbar: 1rem;
        --img-logo: 50px;
    }
}
@media (min-width: 80em) {
    :root {
        --fs-navbar: 1rem;
        --img-logo: 50px;
    }
}
#logo {
    height: var(--img-logo);
}
.no-drag {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
body, html {
    font-family:'Lato';
    height: 100%;
    margin: 0;
    overflow: overlay;
}
.content {
    display: flex;
    background: #090013;
    width: 100%;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background: #362a1a;
    height: 40px;
    transition: opacity 1s;
}
footer #footer-txt {
    color: #745a37;
    opacity: 0.8;
}
footer:hover #footer-txt {
    opacity: 1;
}