html {
  font-family: var(--font-sans);
  font-size: clamp(var(--min-font-size), .8vw + 5px, var(--font-size));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: uppercase;
  /* --icon-size: 0.8em; */
  display: flex;
  align-items: center;
  column-gap: var(--column-gap, calc( var(--inline-space) / 2));

  a {
    text-decoration: none;
  }
}

:where(h1, h2, h3, h4, h5, h6):first-child {
  margin-block-start: 0;
}
