/* 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: white;
  color: black;
  font-family: Garamond, serif;
}
h1 {
  font-family: 'Brush Script MT', cursive;
  font-size: 45px;
  
}
h2 {
  font-family: 'Brush Script MT', cursive;
  font-size: 40px;
  
}
h3 {
  font-family: 'Brush Script MT', cursive;
  font-size: 30px;
  
}
h4 {
  font-family: 'Brush Script MT', cursive;
  font-size: 25px;
  
}
h5 {
  font-family: 'Brush Script MT', cursive;
  font-size: 20px;
  
}
h6 {
  font-family: 'Brush Script MT', cursive;
  font-size: 15px;
  
}
p{
  font-size: 25px;
}
.center-text{
   text-align: center;
   width: 400px;
   margin: auto;
}
.center{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
 .border-main{
     border: 10px  ridge black;
     border-radius: 5px;
     width: 750px;
     margin: auto;
     padding: 40px 20px
} 
 .border-header{
    border: none;
     border-radius: 5px;
     width: 750px;
     margin: auto;
     padding: 40px 20px
 }
 .buttons{
   border: none;
   padding: 40px 0px; 
   position: relative; 
   text-align: center; 
   width: 100%; 
   margin:auto;
 }
 .buttons a{
   background: black; 
   border: 10px ridge #3B3B3B; 
   border-radius: 10px;
   color: white;
   display: inline-block;
   padding: 20px;
   text-decoration: none;
   font-family: 'Brush Script MT', cursive;
   font-size: 35px;
 }
 .buttons a:hover { 
   background: grey;
   border: 10px ridge #3B3B3B;
   color: white; }
 
 .link{
     color: black;
   }
   .link:hover {
     color:  grey;
   }
   .border-footer{
     border: none;
     border-radius: 5px;
     width: 750px;
     margin: auto;
     padding: 40px 20px
   }
 
#updated { 
  font-size: 12px; 
  }
#copyright { 
  font-size: 13px; 
  }