#hamburger
{
    z-index: 999;
    position: fixed;
    right: 4vh;
    top: 4vh;
    height: 8vh;
    width: 8vh;
    cursor: pointer;
}
#hamburger > div
{
    position: absolute;
    width: 100%;
    right: 0px;
    height: 0.5vh;
    background-color: rgb(255, 255, 255);
    transition: 0.4s;
    border-radius: 2px;
}
#hamburger > div:nth-of-type(2)
{
    top: 1vh;
}
#hamburger > div:first-of-type
{
    top: 3vh !important;
}
#hamburger > div:last-of-type
{
    top: 5vh !important;
}

#hamburger.display > div
{
    background-color: red;
    box-shadow: 0px 0px 5px red;
}
#hamburger.display > div:nth-of-type(2)
{
    opacity: 0;
}
#hamburger.display > div:first-of-type
{
    transform: translate(0px, 1vh) rotate(-45deg) !important;
}
#hamburger.display > div:last-of-type
{
    transform: translate(0px, -1vh) rotate(+45deg) !important;
}

