/* Normalize header and nav link styling */
header nav a {
  text-decoration: none;
  color: #1d4ed8; /* Tailwind's blue-700 */
}

header nav a:hover {
  text-decoration: underline;
}

header h1 a {
  text-decoration: none;
  color: #1d4ed8;
}

#mobile-menu a {
  text-decoration: none;
}
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background: #fafafa;
  color: #111;
  padding: 2rem;
  margin: 0;
}

article {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

article h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

article h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

article p {
  margin-bottom: 1rem;
}

a {
  color: #1a73e8;
  text-decoration: underline;
}
