#menu {
    display: none;
}

@media screen and (max-width: 39.9375em) {

    div#hamburger {
        width: 35px;
        position: fixed;
        right: 40px;
        top: 80px;
        display: none;
    }

    div#hamburger.floating {
        display: block;
        position: fixed;
        width: 100%;
        height: 60px;
        background: rgba(240, 240, 240, 0.8);
        top: 0px;
        z-index: 23232;
        left: 0px;
        right: 0px;
    }

    div#hamburger.floating #buns {
        position: absolute;
        right: 40px;
        top: 14px;
        cursor: pointer;
    }

    #hamburger #buns div {
        width: 35px;
        height: 3px;
        background-color: #888888;
        margin: 6px 0;
    }

    #menu {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0px;
        bottom: 0px;
        background: rgba(180, 180, 180 , 0.95);
        z-index: 213123123;
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    #menu li {
        margin-top: 40px;
        text-align: center;
        font-family: Quicksand, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
        font-size: 21px;
    }
}