* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--brand);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin-block-start: 0;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.45;
  letter-spacing: -0.035em;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.5;
}
h3 {
  font-size: 1.1rem;
  line-height: 1.6;
}
p {
  margin-block-end: 0.75rem;
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin-block: 1.5rem;
}
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.muted,
.help {
  color: var(--muted);
}
.help {
  font-size: 0.875rem;
}
.help ul {
  padding-inline-start: 1.3rem;
}
.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: white;
  z-index: 10;
}
.skip:focus {
  top: 1rem;
}
code {
  overflow-wrap: anywhere;
}
a,
button,
p,
dd,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}
