Now, we put all this text inside a <div id='content'>...</div>, and give it a width.

No height, because we'd like the container to stretch down the page depending on how much text, and what font-size things are at.

#content { 
   width: 35em;
   background-color: #888;
   padding: 2em;
}

<< Back | On to the centered container >>