Example - http://jstn.info/html.html - link rot, example no longer available.
Notice the text is centered, but the bullet points themselves are not.
There are a bunch of ways to solve this depending on your project's UI needs.
I've listed 3 possible solutions here: https://codesandbox.io/s/r1j95pryn
ul {
list-style-position: inside;
padding-left: 0;
}
ul {
display: inline-block;
padding-left: 0;
}
ul {
display: inline-block;
padding-left: 0;
text-align: left;
}