html, body {
  background-color: #F1F2F3;
  font-family: 'Univers for Schueco', arial, sans-serif;
  color: #262626;
}

body {
  margin: 40px 32px;
}

h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.25px;
  margin-top: 64px;
}

h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.25px;
}

h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.25px;
}

p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

.content {
  max-width: 840px;
  margin: auto;
}

.logo {
  max-height: 80px;
}

ol {
  counter-reset: item;
}

li {
  display: block;
}

li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}