/* Style the navigation menu */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    background-color: #333;
  }
  
  /* Style the list items */
  nav ul li {
    padding: 14px 20px;
    color: white;
  }
  
  /* Add hover effect to list items */
  nav ul li:hover {
    background-color: #111;
    color: yellow;
  }
  
  /* Style the first list item differently */
  nav ul li:first-child {
    background-color: #4CAF50;
    font-weight: bold;
  }
