#hamburgerSection{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(89, 89, 89, 0.282);
    z-index: 2;
    top: 0;
    display:flex;
    justify-content: space-between;
}
.hamburgerHidden{
    visibility: hidden;
}
.hamburgerShown{
    visibility: unset;
}
#hamburgerNavigation{    
    width: 48%;
    height: 100%;
    background-color: #fafafa;
}
#hamburgerEmptyBox{
    width: 52%;
    height: 100%;
    background-color: transparent;
}
.navLinksHamburger{
    margin: 30px;
}
.navLinksHamburgerText{
    text-decoration: none;
    color: #333;
    font-size: 19px;
}
#hamburgerButton{
    width: 27px;
    opacity: 0.7;
}

#hamburgerButtonBox{
    visibility: hidden;
    display: none;

}
#hamburgerCloseBox{
    width: 100%;
    height: 0;
    overflow: visible;
    position: relative;
    display: grid
;
    justify-content: right;
}
#hamburgerCloseButton{
    width: 30px;
    position: relative; 
    margin: 10px;
    padding: 5px;
    opacity: 0.3;
}
@media (max-width: 870px) {
    #hamburgerButtonBox{
        align-items: center;
        margin: auto 2rem;
        visibility: unset;
        display:unset;
    }
}
