#burgerMenu {
    position: absolute;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

#burgerMenu .buttonsContainer {
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

#burgerMenu button {
    background-color: transparent;
    color: white;
    font-size: 16px;
    margin: 2px;
}

#burgerMenuOpenButton {
    position: absolute;
    right: 20px;
    bottom: 20px;
}