
  /*---------*\
  |   TEXT    |
  \*---------*/ 

p, header, ul, li, a {
    font-weight: thin;
    font-size: 16px;
  }
  

  header{
    text-align: left;
    font-size: 24px;
    padding: 10px;
  }
  code{
    background-color: #e6e6e6;
    color: #2778e9;
    font-family: monospace;
  }

  .nav-header{
    font-size: 22px;
    padding: 6px;
  }

  .title {
    color: rgb(219, 110, 0);
    font-size: 30px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }

  .link {
    transition-duration: 0.2s;
    text-decoration: none;
    padding: 3px;
    font-size: 17px;
  }

  .link:hover {
    background-color: #f2f2f2;
  }

  .link:active {
    color: #2778e9;
    background-color: #2778e954;
  }

  /*-------------------*\
  |   PAGE STRUCTURE    |
  \*-------------------*/ 

  #navbar {
    position: fixed;
    min-width: 300px;
    top: 0px;
    left: 0px;
    width: 330px;
    height: 100%;
    background-color: white;
    z-index: 999;
    user-select: none;
  }
  
  #main-doc, header{
    text-align: left;
    font-size: 14px;
  }
  
  li{
    padding: 10px;
    color: black;
    font-size: 16px;
  }
  
  .nav-li:hover{
    background-color: #9f9f9f;
  }

  .nav-li:active {
    background-color: #6b6b6b;
  }
  
  .nav-ul{
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
    #navbar{
    display: block;
  }
  
    #main-doc{
    position: absolute;
    margin-left: 330px;
    margin-bottom: 130px;
    padding: 20px;
  }

  *{
    font-family: sans-serif;
    text-decoration: none;
  }
