.nav2 {
    
  color: #6c757d;
  text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding-left: 15px;
    padding-top: 12px;
    margin-bottom: 0;
    list-style: none;
  }
  .nav2{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  
  .nav2 li{
    height: 50px;
  }
  .nav2 a{
    height: 100%;
    
    text-decoration: none;
    display: flex;
    
    color: black;
  }
  .nav2 a:hover{
    background-color: #f8f4f4;
  }
  
.sidebar{
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #c2a476;
    box-shadow: -10px 0 10px rgba(194, 188, 188, 0);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;

}

.sidebar li{
    width: 100%;
    
}
.sidebar a{
    width: 100%;
}
.menu-button{
    display: none;
    padding-left: 5px;
}


@media(max-width:770px){
.hideOnMobile{
    display: none;
}
    .menu-button{
        display: block;
    }
}
@media(max-width:400px){
    .sidebar{
        width: 60%;
    }
}

/* COMMENT SECTION */

.comment-section{
  
}