body {
  background-color: rgb(241, 190, 132);
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  color: rgb(68, 43, 2);
  margin-bottom: 20px;
}

h2#red {
  color: rgb(139, 8, 8);
}

.green {
  color: rgb(8, 139, 34);
}

a.main-list {
  font-size: 2rem;
}

ol {
  list-style: none;
  counter-reset: item;
}

ol li {
  counter-increment: item;
  margin-bottom: 5px;
}

ol li::before {
  content: counter(item);
  background: rgb(0, 0, 0);
  border-radius: 100%;
  color: white;
  width: 1.2em;
  /* height: 2em; */
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  font-size: 2rem;
  padding: 0.2em;
}
