.row {
    padding: 0;
    margin: 0;
}

#button-container {
    position: fixed !important;
    right: 3%;
    top: 8px;
    z-index: 100;
    overflow: scroll;
}

#menu-button {

    height: 25px;
    width:  25px;
    z-index: 100;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.menu-container {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.menu-container.open {
    transform: translateX(0);
}
