#humberger {
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    height: 24px;
    width: 24px;
    display: inline-block;
    box-sizing: border-box;
}

#humberger div {
    position: absolute;
    left: 0;
    height: 4px;
    width: 24px;
    background-color: #fff;
    border-radius: 2px;
    display: inline-block;
    box-sizing: border-box;
}

#humberger div:nth-of-type(1) {
    top: 0;
}

#humberger div:nth-of-type(2) {
    top: 10px;
}

#humberger div:nth-of-type(3) {
    bottom: 0;
}