ol {
  list-style: none;
  counter-reset: my-counter;
}
ol li {
  counter-increment: my-counter;
}
  
  1. content: counter(my-counter) ". ";
  2. color: red;
  3. font-weight: bold;