/* ============================================================================
   BASE TYPOGRAPHY
   ============================================================================ */

body {
  font-family: var(--font-primary);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Headings */

h1 {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1em;
}

h2 {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 1px;
  color: var(--tertiary-color);
}

h3 {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 1px;
}

/* Paragraphs */

p {
  line-height: 1.6em;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.25s ease-in-out;
}

p span,
a span {
  opacity: 0.6;
  font-weight: 400;
}

small {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-primary);
}

/* Links */

a {
  transition: all 0.2s ease-in-out;
  color: white;
  text-decoration: none;
  font-weight: 700;
}
a:hover, a:focus, a:active {
  color: var(--tertiary-color);
}

/* Inline images in text */

h1 a,
h2 a,
h3 a,
p a {
  white-space: nowrap;
}
h1 img,
h2 img,
h3 img,
p img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: cover;
  display: inline-block;
  margin-bottom: 0.125rem;
  vertical-align: bottom;
  border-radius: 0.5rem;
  margin-right: 0.25rem;
  box-shadow: 0 0.125rem 0.25rem 1px rgba(0, 0, 0, 0.1);
}
