
*,html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    scroll-behavior: smooth;
}
body{
    background-color: black;
    color: white;
}
.title{
    font-family: 'Montserrat';
}
.menu {
    position: fixed;
    top: 0;
    left: -100%; /* Initially hide the menu off-screen */
    width: 200px; /* Adjust width as needed */
    height: 100%;
    background-color: white;
    transition: left 0.3s ease; /* Add transition for smooth animation */
    z-index: 1000; /* Ensure menu appears above other content */
}

.menu.open {
    left: 0; /* Show the menu by moving it to the left */
}
