* {
  box-sizing: border-box;
}

:root {
  color-scheme: light dark;
  --bg: #fff;
  --ink: #000;
  --accent: #245cff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000;
    --ink: #fff;
    --accent: #4f7cff;
  }
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Iowan Old Style BT", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 17px;
  line-height: 1.36;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

main {
  width: min(780px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 17.2vh 0 64px;
}

.note {
  min-height: calc(100vh - 64px - 17.2vh);
  display: flex;
  flex-direction: column;
}

h1 {
  margin: 0 0 38px;
  font: inherit;
  letter-spacing: 0;
}

h1 em {
  font-style: italic;
}

p {
  margin: 0 0 36px;
}

nav {
  display: flex;
  margin-top: 8px;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  main {
    width: min(100% - 36px, 780px);
    padding-top: 72px;
  }
}
