.row {
    padding: 0;
    margin: 0;
}

#button-container {
    position: fixed !important; 
    /* right: 5%;  */
    top: 0; 
    z-index: 100;
    width: 100%;
    text-align: end;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: right;
    /* background-color:#cacaca; */
}

#menu-button {
    
    height: 3vh; 
    width:  3vh;
    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);
}

