body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-charcoal);
  line-height: var(--line-height-body);
  letter-spacing: var(--ls-body);
  background-color: #F0F0F0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  line-height: var(--line-height-heading);
  letter-spacing: var(--ls-tight);
  color: var(--color-teal);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  max-width: 68ch;
}

p + p {
  margin-top: var(--space-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
