/*
  Emulate Bootstrap's .display-n heading classes

  https://getbootstrap.com/docs/5.3/content/typography/#display-headings

  $display-font-sizes: (
    1: 5rem,
    2: 4.5rem,
    3: 4rem,
    4: 3.5rem,
    5: 3rem,
    6: 2.5rem
  );
  $display-font-weight: 300;
*/

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}
