/*
ol {
	padding-left: 10px;
}*/
ol.lista {
  max-width: 550px;
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 10px;
  margin-left: 10px;
}
ol.lista li {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}
ol.lista li::before {
  content: counter(my-awesome-counter);
  color: #DF3612;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 1px 1px 0 #999;
}

/*body {
  background: #191919;
  color: #eee;
  font-family: Lato, sans-serif;
  line-height: 1.4;
  font-size: 90%;
  margin: 2rem;
}*/