/* 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." */
   
 /* Background of the webpage, should be in a nice cream color*/
 
 body {
  background-color: oldlace;
  border: 6px groove #d9544d;
  color: black;
  font-family: Verdana;
}

 /* Header 1 formating*/
 
 h1 {
  text-align: center;
  color: #d9544d;
} 

 /* Puts a little box around the words so they look like buttons. Im sure there is a better way to set this up but, this was the first way that I found online and it looks nice enough for now. Originally said a:link and a:visited, but condensed down to just 'a'. Can adjust back later if that breaks anything.*/
 
 a {
  color: #d9544d;
  text-decoration: none;
  border: 2px solid #d9544d;
} 

 /* What is keeping all the elements in the center of the screen. */
 
 .center {
  text-align: center;
}
