.ordered-numbers-list { list-style: none; counter-reset: order-counter; li { counter-increment: order-counter; margin-bottom: 30px; display:flex; &::before { content: counter(order-counter); font-weight: bold; font-size: 3rem; margin-right: 30px; line-height: 1; } } }