nav{
  background-color:var(--bg-lightside);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  
  

}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--text);
}
nav a:hover{
  background-color: /*#f0f0f0;*/var(--bg-dark1);border-radius:10px;
}
nav li:first-child{
  margin-right: auto;
}
/*extra actieve pagina*/
 a:is(:link, :active, :visted).active{      
     border:1px solid;
        /*background-color:var(--bg-dark1);*/
     border-radius:10px;
      }
/*  
a:is(:link, :active, :visted).active{
      color:black;
        background-color:grey;border-radius:10px;
      }
*/      
.sidebar{
  position: fixed;z-index:2;
  top: 0; 
  right: 0;
  height: auto;
  width: 250px;
  /*background-color: rgba(255, 255, 255, 0.15);*/
    background-color: /*#f0f0f0;*/var(--bg-light);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;height:40px;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;background-color: rgba(255, 255, 255, 0.15);
}

@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}