#navbar{
    color: aliceblue;
    background-color: black;
    height: 100%;
    width: 300px;
    min-width: 290px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#navbar a{
    display: block;
    padding: 16px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;

}

#navbar ul{
    height: 88%;
    padding: 0;
    overflow-y: auto ;
    overflow-x: hidden;
}

#navbar li {
    color: #4d4e53;
    border-top: double;
    list-style: none;
    position: relative;
    width: 100%;
  }

#navbar a {
    display: block;
    padding: 10px 30px;
    color: white;
    text-decoration: none;
    cursor: pointer;
  }

#main-doc{
    position: absolute;
    margin-left: 310px;
    padding: 20px;
    margin-bottom: 110px;
}

header{
    font-size: 32px;
    font-weight: bold;
}

code{
    color: white;
    background-color: black;
    display: block;
    white-space: pre-line;
    padding: 15px;
    margin: 10px;
    position: relative;
    word-break: normal;
    word-wrap: normal;
    text-align: left;
    border-radius: 5px;
}

#navbar header {
    text-align: center;
    font-style: italic;
    border-style: dashed;
    margin: 15px;
}

p, li{
    font-size: large;
}

@media only screen and (max-width: 815px) {
    /* For mobile phones: */
    #navbar ul {
      border: 1px solid;
      height: 207px;
    }
  
    #navbar {
      background-color: black;
      position: absolute;
      top: 0;
      padding: 0;
      margin: 0;
      width: 100%;
      max-height: 275px;
      border: none;
      z-index: 1;
      border-bottom: 2px solid;
    }
  
    #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;
    }
  }