  body{
  background-image: url("images/background.jpg");
  font-family: "Courier New", monospace;
  max-width: 900px;
  margin: 0 auto;
  }
  
  
  header{
  background-image: url("images/header.jpg");
  padding: 35px;
  color: black;
  border-radius: 10px;
  margin-top: 10px;
  }
  
  
  img {
  float: right;
  }
  
  
  #navbar{
  flex: auto;
  height: auto;
  width: 140px;
  float: left;
  overflow: auto;
  background: #f3f2f2;
  border-radius: 10px 0px 0px 10px;
  border: 2px solid #d4c4eb;
  }
 
 
  #navbar ul {
  flex: auto;
  list-style-type: none;
  text-align: left;
  line-height: 50px;
  word-spacing: 50px;
  }
 
  
   #navbar li a {
   color: #509724;
   text-decoration: none;
   }
 
  
  #navbar li a:hover {
  color:  green;
  text-decoration: none;
  }
 
 
  section::after {
  content: "";
  display: table;
  clear: both;
  }
 
 
  main{
    margin: auto;
    
  overflow: auto;
    height: auto;
    background: lavender;
    }
 
  
  .side {
    width: 140px;
    background: lavender;
    display: flex;
    font-size: 15px;
    color: purple;
    border: 2px solid #d4c4eb;
    border-radius: 0px 10px 10px 0px;
    }
  
    
  .main {
    width: auto;
    height: auto;
    overflow: auto;
    background: lavender;
    flex: auto;
    font-size: 15px;
    color: purple;
    }
    
  
  
  h2 {
    color: #788b84;
    }
  
  
  h3 {
  color: #509724;
  }
  

