<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-color);
  font-family: Lato-Regular;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato-Bold;
  font-weight: normal;
}

h1 {
  font-size: 45px;
  line-height: 47px;
  color: var(--color-primary);
  margin: 0 0 50px;

  sup {
    font-size: 12px;
  }
}

h2 {
  font-size: 29px;
  line-height: 30px;
  color: var(--blue-500);

  sup {
    font-size: 10px;
  }
}

h3 {
  font-size: 21px;
  line-height: 26px;
  color: var(--blue-500);
}

h4 {
  font-size: 17px;
  line-height: 24px;
  color: var(--blue-500);
}

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

p {
  padding: 0 0 25px;
  margin: 0;
}

strong {
  font-family: Lato-Bold;
  font-weight: normal;
}

sup {
  font-size: 10px;
  line-height: 1px;
}

table,
th,
td {
  border: 1px solid var(--text-color);
  border-collapse: collapse;
}

table {
  text-align: left;
  width: 100%;
}

th {
  background-color: var(--blue-500);
  color: white;
  padding: 10px;
}

td {
  padding: 10px;
}

@media (max-width: 1030px) {
  h1 {
    font-size: 38px;
    line-height: 40px;
    margin: 0 0 30px;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
    margin: 10px 0 25px;
  }

  p {
    padding: 0 0 20px;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 30px;
    line-height: 32px;
  }

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

  h3 {
    font-size: 16px;
    line-height: 24px;
  }

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

@media (max-width: 470px) {
  h1 {
    font-size: 27px;
    line-height: 30px;

    sup {
      font-size: 9px;
    }
  }

  h2 {
    font-size: 18px;
    line-height: 23px;
  }

  h3 {
    font-size: 15px;
    line-height: 21px;
  }

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

  sup {
    font-size: 8px;
  }
}
</pre></body></html>