ol {
  counter-reset: item;
  list-style-type: none;
  list-style-position: inside;
}
ol li::before {
  counter-increment: item;
  content: counters(item, '.') '. ';
}
