

  * {
    max-width: 700px;
    margin: auto;
  }
  
  

  
  div {
    border-radius: 5px;
  }
  
  #header {
    height: 40px;
    width: 100%;
    background-color: rgb(161, 208, 214);
    position: fixed;
    z-index: 1;
  }
  
  #title {
    margin-left: 3%;
  }
  
  #footer {
    height: 50px;
    width: 100%;
    background-color: rgb(161, 208, 214);
    clear: both;
    position: relative;
  }
  
  .left {
    height: 1000px;
    width: 45px;
    background-color: rgb(50, 119, 113);
    float: left;
    position: fixed;
  }
  
  .right {
    height: 1800px;
    width: 45px;
    background-color: rgb(50, 119, 113);
    float: right;
    position: inherit;
  }
  
  .stuff {
    display: inline-block;
    margin-top: 6px;
    margin-left: 55px;
    width: 75%;
    height: 1000px;
  }
  
  p,
  li {
    font-family: 'Cormorant Garamond';
  }
  
  .head {
    font-size: 20px;
  }
  
  #name {
    font-family: Sacramento;
    float: right;
    margin-top: 10px;
    margin-right: 4%;
  }
  
  a {
    color: black;
    text-decoration: none;
  }
  a:hover {
    background-color: rgb(161, 208, 214);
    border-color:rgb(50, 119, 113);
  }
  
