.content {
  margin-top: 100px;
}
.tagline {
  display: inline-block;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 5em;
  background-color: var(--light-green);
  margin-bottom: 25px;
}
ol {
  counter-reset: term;
  padding-left: 0;
  list-style: none;
}
ol li {
  counter-increment: term;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
ol li h3::before {
  content: counter(term) ". ";
}
