html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 { font-size: var(--text-5xl); font-weight: var(--weight-extrabold); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-cyan); }

strong { font-weight: var(--weight-semibold); color: var(--color-text-primary); }

.text-primary  { color: var(--color-text-primary); }
.text-muted    { color: var(--color-text-muted); }
.text-faint    { color: var(--color-text-faint); }
.text-accent   { color: var(--color-primary); }
.text-cyan     { color: var(--color-cyan); }
.text-center   { text-align: center; }
.text-sm       { font-size: var(--text-sm); }
.text-lg       { font-size: var(--text-lg); }

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
}

.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;
}
