/* Base font scaling */
html {
  font-size: 16px;
  /* Default for desktops */
}

/* Headings */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* 40px */
h2 {
  font-size: 2rem;
  font-weight: 600;
}

/* 32px */
h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

/* 28px */
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* 24px */
h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

/* 20px */
h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* 16px */

/* Body text */
p,
a,
li,
span {
  font-size: 1rem;
  /* 16px */
  font-weight: 400;
  /* Normal for readability */
  line-height: 1.6;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 1023px) {

  /* Tablets */
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.1rem;
  }

  h6 {
    font-size: 1rem;
  }

  p,
  a,
  li,
  span {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {

  /* Mobiles */
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 0.9rem;
  }

  p,
  a,
  li,
  span {
    font-size: 0.9rem;
  }
}

/* Universal font family */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-style: normal;
}