/* Reset margin and padding for ul */
nav ul {
  list-style: none; /* Remove bullet points */
  margin: 0;
  padding: 0;
  display: flex; /* Arrange items in a horizontal row */
  justify-content: center; /* Center items horizontally */
  background-color: #333; /* Background color of the nav bar */
  padding: 10px 0; /* Add some padding for height */
}

/* Style each list item */
nav ul li {
  margin: 0 15px; /* Add space between items */
}

/* Style the links */
nav ul li a {
  text-decoration: none; /* Remove underline */
  color: white; /* White text */
  font-size: 16px; /* Adjust font size */
  font-weight: bold; /* Make text bold */
  transition: color 0.3s ease; /* Smooth color change */
}

/* Add hover effect for links */
nav ul li a:hover {
  color: #00aaff; /* Change color on hover */
}
