body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
}

nav {
  background-color: #3260a8;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;                /* ✅ Wraps on small screens */
  justify-content: center;
  gap: 20px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;            /* ✅ Prevents awkward line breaks in long titles */
}

.nav-menu li a:hover {
  text-decoration: underline;
}

.content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

h1 {
  text-align: center;
}

a {
  color: #3260a8;
}
