* {
  font-family: 'Sofia', sans-serif;
}

.light {
  color: var(--light);
}

.dark {
  color: var(--dark);
}

.primary {
  color: var(--primary);
}

.primary-dark {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  margin: 0;
  letter-spacing: 0.02rem;
}

p,
span,
strong {
  letter-spacing: 0.02rem;
}

.text-center {
  text-align: center;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 52px;
}

h2 {
  font-size: 36px;
  line-height: 40px;
}

h3 {
  font-size: 30px;
  line-height: 32px;
}

h4 {
  font-size: 22px;
  line-height: 26px;
}

h5 {
  font-size: 18px;
  line-height: 20px;
}

h6 {
  font-size: 16px;
  line-height: 18px;
}

.bigger {
  font-size: 25px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 34px;
  }

  h2 {
    font-size: 26px;
    line-height: 26px;
  }

  h3 {
    font-size: 20px;
    line-height: 22px;
  }

  h4 {
    font-size: 18px;
    line-height: 20px;
  }

  h5 {
    font-size: 16px;
    line-height: 18px;
  }

  h6 {
    font-size: 14px;
    line-height: 16px;
  }

  .bigger {
    font-size: 17px;
    line-height: 22px;
  }

  .text-center-mobile {
    text-align: center;
  }
}