/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: seashell;
  color: rosybrown;
  font-family: cursive;
  margin: 100px;
  padding 100px;
}

body {
   text-align:center; /* this is required for old versions of IE */
}
#centered {
   width:400px; /* this is the width of the center column (px, em or %) */
   text-align:justify; /*resets the text alignment back to left */
   margin:0 auto; /* auto centers the div in standards complaint browsers */
}

h1 {
    margin: 100px;
    padding: 40px;
    border-style:dotted;
    border-width: 3px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-color: rosybrown;
}