body .main {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (min-width: 1200px) {
  body .main {
      max-width: 80ch;
  }
}

@media (min-width: 1600px) {
  body .main {
      max-width: 100ch;
  }
}

a {
  color: inherit; /* Inherits text color, no distinct color */
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4); /* Subtle underline color */
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7); /* Slightly stronger underline on hover */
}

p {
  margin-bottom: 1.5rem;
}

a.anchor {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}