/* 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." */

/* .wrap {
  width:960px;
  margin:0 auto;
}*/ 

.page {
  max-width: 960px;   /* or any width you want */
  margin: 0 auto;      /* centers horizontally */
}

.container {
  max-width: 800px;    /* maximum width of the content */
  margin: 0 auto;      /* centers the container horizontally */
  padding: 0 20px;     /* flexible left/right spacing on smaller screens */
}


body {
  background-color: FloralWhite;
  color: black;
  font-family: Arial;
}

h1 {
  color: cadetblue;
  text-align: center;
  font-family: Arial;
}

h2 {
  color: darkslateblue;
  text-align: center;
  font-family: arial;
}


/* unvisited link */
a:link {
  color: darkslategrey;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: PaleVioletRed;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: PaleVioletRed;
  text-decoration: none;
}
  
  