@font-face {
    font-family: Moholy-sans;
    src: url(/assets/font/MoholySans-Regular.woff);
}

.nav {
    font-family: Moholy-sans;
    text-align: left;
    position: absolute;
    top: 5px;
    height: 70px;
    line-height: 70px;
    width: 100%;
    z-index: 1000;
}

.menu {
    width: 90%;
    margin: 0 auto;
}

.menu a {
    clear: left;
    text-decoration: none;
    margin-right: 40px;
    line-height: 70px;
    color: #483c46;
    font-size: 18px;
}

.menu a:last-child {
    margin-right: 0;
}

#label {
    margin: 0 0 0 20px;
    font-size: 18px;
    line-height: 70px;
    display: none;
    color: rgb(234, 195, 75);
    font-weight: bold;
}

#toggle {
    display: none;
}

div.spacer {
    font-size: 0;
    height: 70px;
    line-height: 0;
}

span#logo {
    font-weight: 700;
    font-size: 12px;
}

.download {
    float: right;
    padding: 10px;
    color: white;
}

@media only screen and (max-width: 930px) {
    #label {
        display: block;
        cursor: pointer;
        width: 24px;
        float: left;
        z-index: 1001;
    }
    .menu {
        text-align: center;
        width: 100%;
        top: 0px;
        position: absolute;
        background-color: rgb(0, 8, 58);
        display: none;
        margin: 0;
    }
    .menu a {
        display: block;
        border-bottom: 1px solid #ececec;
        margin: 0px;
    }
    #toggle:checked+#label {
        background: rgb(158, 159, 161);
    }
    #toggle:checked+.menu {
        display: block;
    }
    .download {
        float: none;
    }
}