a {
  border-bottom: 1px rgba(34, 34, 34, 0.29) dotted;
}

body {
  background-color: #e9e5dd;
}
ol {
  counter-reset: foobar;
}
ol li {
  list-style: none;
  margin-left: 2.5rem;
}
ol li :first-child {
  font-weight: 500;
  /* font-size: 1.1rem; */
}
ol li:before {
  counter-increment: foobar;
  content: counter(foobar) ". ";
  font-weight: 500;
  /* font-size: 1.1rem; */
  position: absolute;
  margin-left: -2.5rem;
}
