File: //var/www/linde-ai/html/styles/global/_typography.scss
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
  font-style: normal;
  margin: 0;
  &.med {
    font-weight: 500;
  }
}
h1 {
  font-size: 52px;
  line-height: 100%;
  @media screen and (max-width: $breakpoint-s) {
    font-size: 32px;
  }
}
h2 {
  font-size: 36px;
  line-height: 130%;
  @media screen and (max-width: $breakpoint-s) {
    font-size: 20px;
  }
}
h3 {
  font-size: 26px;
  line-height: 130%;
  @media screen and (max-width: $breakpoint-s) {
    font-size: 20px;
  }
}
h4 {
  font-size: 20px;
  line-height: 140%;
  @media screen and (max-width: $breakpoint-s) {
    font-size: 18px;
  }
}
h5 {
  font-size: 18px;
  line-height: 150%;
}
h6 {
  font-size: 16px;
  line-height: 150%;
}
p {
  font-size: 14px;
  line-height: 140%;
}
.light-text {
  color: var(--color-6);
}
.dark-text {
  color: var(--color-4);
}
.white-text {
  color: var(--color-white);
}
.med {
  font-weight: 500;
}
a,
a:hover,
a:focus,
a:visited,
a:focus-visible,
a:active {
  text-decoration: none;
}