#cssmenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

body {
  padding-top: 70px; /* Adjust this value based on the height of your navbar */
}

/* Navigation Bar Start */
.navbar {
  font-size: 18px;
  background-image: linear-gradient(260deg, #1c1c1c 0%, #000000 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

#main-nav {
  list-style-type: none;
  display: none;
  flex-direction: column;
}

#main-nav li {
  text-align: center;
  margin: 15px auto;
}

.nav-links,
#logo {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 0.5px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 12px #0095ff, 0 0 1px #0066ff, 0 0 15px #0037ff;
}

#logo:hover,
.nav-links:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 5px #0095ff, 0 0 10px #0095ff, 0 0 15px #0095ff, 0 0 20px #0095ff, 0 0 25px #0095ff, 0 0 30px #0095ff, 0 0 35px #0095ff;
}

#logo {
  display: inline-block;
  font-size: 18px;
  margin-top: 10px;
  margin-left: 20px;
}

.logo-change {
  vertical-align: middle;
}

#navbar-toggle {
  position: absolute;
  margin-top: 22px;
  right: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
}

#navbar-toggle:hover {
  color: rgba(255, 255, 255, 1);
}

/* Navigation Bar for devices with min-width of 864px */
@media screen and (min-width: 864px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
    height: 70px;
    align-items: center;
  }

  #main-nav {
    display: flex !important;
    margin-right: 30px;
    flex-direction: row;
    justify-content: flex-end;
  }

  #main-nav li {
    margin: 0;
  }

  .nav-links {
    margin-left: 40px;
  }

  #logo {
    margin-top: 0;
    margin-left: 20px;
  }

  #navbar-toggle {
    display: none;
  }
}
