@media (min-width: 750px) {
  .navbar {
    background: rgba(29, 29, 29, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid #31f827;
    padding: 1em;
    width: 700px;
    border-radius: 15px;
    position: fixed; /* Fix it to the top of the screen */
    top: 1%; /* Adjust vertical positioning */
    left: 50%; /* Position the left edge at the center */
    transform: translateX(-50%); /* Shift it left by half its width */
    z-index: 1000; /* Ensure it stays above other content */
    cursor: inherit;
  }
  
  .navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    color: #31f827;
  }
  
  .navbar-menu li {
    margin-left: 20px;
    color: #31f827;
  }
  
  .navbar-menu a {
    color: #31f827;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 8px;
    transition: background-color 0.8s;
    font-weight: 900;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap; /* Prevent text from breaking within links */
    cursor: inherit;
  }
  
  .navbar-menu a i {
      margin-right: 8px; /* Add space between icon and text */
      cursor: inherit;
  }
  
  .navbar-menu a:hover {
    background-color: #0da105;
    color: white;
    border-radius: 10px;
    cursor: inherit;
  }

  .navbar-toggle {
    display: none;
  }
}