In your
CSS, try adding text-align: center in the body:
body {text-align: center}
You can turn the text back to left aligned using text-align: left for your other styles like so:
p, h1, h2, h3 {text-align: left}
Might not be the problem, but its a start.