/**
 * @file
 * Base Fonts.
 */

/* Google Fonts - Tilt Neon added in html.html.twig instead of css @import */
/* @import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap'); */

h1 {
  color: var(--color-steel, #535459);
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;

  @media (min-width: 48.1rem) {
    font-size: 60px;  
    line-height: 64px;
  }

}


h2 {
  color: var(--color-steel, #535459);  
  font-style: normal;
  font-weight: 400;  
  font-size: 28px;
  line-height: 34px; /* 121.429% */

  @media (min-width: 48.1rem) {
    font-size: 48px;
    line-height: 54px;
  }

}

h3 {
  color: #535459;    
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height:  28px;

  @media (min-width: 48.1rem) {
    font-size: 40px;
    line-height: 44px;
  }

}

h4 {
  color: #535459;  
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;

  @media (min-width: 48.1rem) {
    font-size: 32px;  
    line-height: 36px;
  }

}


