@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");

html {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

body {
  line-height: 1.5rem;
  color: oklch(0.13 0.028 261.692);
  padding-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.5;
  margin-block: 1rem;
}

h1 {
  font-size: 2rem;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
}

a {
  color: oklch(54% 0.15 255);
  text-decoration: underline;

  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

main {
  padding: 1rem;
}

header {
  padding: 1rem;
}

header nav {
  border: 1px solid red;
  border-radius: 1rem;
  padding: 0.75rem;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Utilities */
.hidden {
  display: none;
}
.print\:block {
  @media print {
    display: block;
  }
}
.print\:hidden {
  @media print {
    display: none;
  }
}
.contents {
  display: contents;
}
