* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
}

body {
  font-size: var(--text-base);
  line-height: 1.6;
  padding-bottom: 4.5rem;
}

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

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.25;
  margin: var(--space-6) 0 var(--space-3);
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

p,
li {
  color: var(--text);
}

small,
.meta-text {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

button,
input,
a {
  min-height: 48px;
}

input,
button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}
