.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99990;
}

.navbar a {
    color: rgb(255, 255, 255);
    cursor: pointer;
}

#mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

#mobile-menu.show {
    transform: translateX(0);
}
