.navigation {
    height: 100%;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 20px;
  }

  .navigation a {
    padding: 6px 6px 6px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }
  
  .navigation a:hover {
    color: #f1f1f1;
  }


  .main {
    margin-left: 200px; /* Same as the width of the navigation */
  }

  .footer {
    margin-left: 200px; /* Same as the width of the navigation */
    font-size: 12px;
    color: #848484
  }

  html {
    width: 70%;
  }