/* 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 {
  font-family: georgia;
  background: lavender;
  }


.page-wrapper {
  width: 900px;
  margin: 0 auto;
  }  


h1 {
  font-family: 'times new roman';}

h2 {
  font-family: 'courier new';
  color: black;}

header {
  text-align: center;}
  
nav {
  margin-top: 25px;
  text-align: center;
  }  
  
aside {
  width: 200px;
  float: left;
  }
  



.box1 {
  padding: 0.5em 1em;
  margin-top: 25px;
  color: green;
  background: white;
  border: dotted;
  border-color: pink;
  }
  
  
  .box2 {
  padding: 0.5em 1em;
  margin-top: 25px;
  color: green;
  background: LightGoldenRodYellow;
  border: dotted;
  border-color: pink;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 225px;
  }
  



footer {
  margin-bottom: 25px;
  margin-top: 25px;
  text-align: center;
  }
  


  
  

  
a {
  color: red;
  }
  
