html,
body {
  min-width: 290px;
  color: black;
  background-color: #ffffff;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  line-height: 1.5;
}

#navbar {
    display: block;
    position: fixed;
    min-width: 290px;
    top: 0px;
    left: 0px;
    width: 300px;
    height: 100%;
    border: none;
    border-right: solid;
    border-color: rgba(0, 22, 22, 0.4);
    border-bottom: 1.6px;
  }

#navbar header{
    color: rgba(0, 22, 22);
    text-align: center;
    margin: 10px 10px;
}
#navbar ul {
    height: 100%;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
#navbar li{
    list-style: none;
    color: black;
    border-top: 1px solid;
    list-style: none;
    position: relative;
    width: 100%;
    padding: 10px 30px;
}
#navbar a{
    color: #4d4e53;
    text-decoration: none;
}
#main-doc{
    position: absolute;
    margin-left: 310px;
    padding: 20px;
    margin-bottom: 110px;
}
#maindoc header{
    text-align: left;
    margin: 0px;
    color: rgba(0, 22, 22);
}
section article{
  color: #4d4e53;
  margin: 15px;
  font-size: 0.96em;
}
section li{
    margin: 15px 0px 0px 20px;
}
code{
    display: block;
    text-align: left;
    white-space: pre-line;
    position: relative;
    word-break: normal;
    word-wrap: normal;
    line-height: 2;
    background-color: #f7f7f7;
    padding: 15px;
    margin: 10px;
    border-radius: 5px;
}

@media only screen and (max-width: 815px) {
    /* For mobile phones: */
    #navbar ul {
      border: 1px solid;
      height: 220px;
    }
    #navbar{
        background-color: white;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        max-height: 296.6px;
        border:none;
        border-bottom: 2px solid;
        min-width: 290px;
        z-index: 1;
    }
    #main-doc {
        position: relative;
        margin-left: 0px;
        margin-top: 270px;
      }
}
    @media only screen and (max-width: 400px) {
        #main-doc {
          margin-left: -10px;
        }
        code {
            margin-left: -20px;
            width: 100%;
            padding: 15px;
            padding-left: 10px;
            padding-right: 45px;
            min-width: 233px;
          }
    }
