FFC:Tribute Page-Perfectly align list item

Hi guys,
I’m basically finished with this tribute page on Steve Jobs, but I wanted the list items to be completely flush at the center of the page. I would like all the dots to be aligned perfectly in the center of the pge. Right now it looks really sloppy and the ul dots are flush to the right. If someone could help me out with this I would really appreciate it. You can view my pen below.

If you align dots at center, then all text will be only on left side. Is this you’re lookin’ for?

ul{
  padding-left: 50%;
}

Nah. I mean it puts the dots in the center but the whole point of that was to align the text so that it’ll be centered to as opposed to skewed with every line. Similar to the neat sentences below.

                           * Something that can work

                           * Like only

                           * This will do what I want.

And if sentence break in newline? Do this piece of sentence need also to be centered right below or on the left side?
If so, then:

ul{
  padding-left: 50%;
  text-align: left;
}