Nikolas, aligning the numbers on an ordered list in CSS is as follows:
ol
{
display: inline-block;
margin-left: auto;
margin-right: auto;
}
**You must use a display-block because you need to put your list in a box for it to center the numbers with the list.