Text won't center like I need it to

My site is here

The problem is if you look at the sample text that I created it is aligned to the right but as you can see from the page we have all this extra space to the right side of my website that is empty and the text does not expand to that side of the page. It appears that align center or align right does not make the text expand over to that right side of the page like I want it to. How do I fix this? Help is appreciated.

if you want to increase content width you can use content like this:

@media (min-width: 1400px) {
  .container {
    width: 1470px;
  }
}

Or to expand it even further for large size displays you can use code like this:

@media (min-width: 1400px) {
  .container {
    width: 100%;
  }
}

Original theme width is 1170px.

Let me know if this helps.