* {
    max-width: 700px;
    margin: auto;
  }
  
  
  /*body {
      min-width: 500px;
  }*/
  
  div {
    border-radius: 5px;
  }
  
  #title {
    margin-left: 3%;
  }
  body{
    background-color: #23282e;
    color:rgba(240, 248, 255, 0.753);
    font-size: 20px;
  }
  #footer {
    height: 50px;
    width: 100%;
    background-color: #0e0d0d;
    clear: both;
    position: relative;
  }
  
  .left {
    height: 1000px;
    width: 45px;
    background-color: #0e0d0d;
    float: left;
    position: fixed;
  }
  
  .right {
    height: 1000px;
    width: 45px;
    background-color: #0e0d0d;
    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: Helvetica;
    float: right;
    margin-top: 10px;
    margin-right: 4%;
    color:aliceblue
  }
  
  a {
    color: rgb(24, 96, 179);
    text-decoration: none;
  }
  
  @media only screen and (max-width: 430px) {
    .left,
    .right {
      display: none;
    }
    .stuff {
      width: 100%;
      margin-left: 10px;
    }
  }