* {
    max-width: 730px;
    margin: auto;
  }
  
  body {
      background-color: black;
    } 
  div {
    border-radius: 5px;
  }
  
  #header {
    height: 40px;
    width: 100%;
    background-color: #808080;
    position: fixed;
    z-index: 1;
  }
  
  #title {
    margin-left: 3%;
  }
  
  #footer {
    height: 50px;
    width: 100%;
    background-color: #808080;
    clear: both;
    position: relative;
  }
  
  .left {
    height: 1000px;
    width: 45px;
    background-color: #EBECF0;
    float: left;
    position: fixed;
  }
  
  .right {
    height: 1000px;
    width: 45px;
    background-color: #EBECF0;
    float: right;
    position: inherit;
  }
  
  .stuff {
    display: inline-block;
    margin-top: 6px;
    margin-left: 55px;
    width: 90%;
    height: 500px;
  }
  
  h1 {
      color: white;
    }
  h2 {
      color: white;
    }

  p,
  li {
    font-family: 'Cormorant Garamond';
    color: white;
  }
  
  .head {
    font-size: 24px;
    color: white;
  }
  
  .body {
      font-size: 20px;
      color:white;
  }

  #name {
    font-family: Sacramento;
    float: right;
    margin-top: 10px;
    margin-right: 4%;
    color: white;
  }
  
  a {
    color: white;
    text-decoration: none;
  }
  
  @media only screen and (max-width: 430px) {
    .left,
    .right {
      display: none;
    }
    .stuff {
      width: 100%;
      margin-left: 10px;
    }
  }