/* navbar and sidebar*/
.Navbar-Layer{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000000b3;
  z-index: 4;
  visibility: hidden;
}
.Toggle-Layer{
  visibility: visible;
}

  
#toggle {
  position: fixed;
  width: 70px;
  height: 60px;
  background-color: #2e2e2e;
  cursor: pointer;
  z-index: 4;
  display: flex;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  border-right: 2px solid #000000;
  box-shadow: #000000 0px 2px 20px;
}
#toggle:hover {
  background: #434344;
}
#toggle:active {
  background: #272829;
}

.navbar, #sidebar{
  position: fixed;
}
.navbar, #toggle{
  border-bottom: 2px solid #000000;
}
.navbar {
  height: 60px;
  width: 100%;
  left: 72px;
  background-color: #393939;
  z-index: 4;
  box-shadow: #000000 0px 2px 20px;
}
  
#sidebar {
  display: grid;
  grid-template-columns: calc(100% - 30px);
  justify-content: center;
  top: 62px;
  left: -300px;
  width: 300px;
  height: 100%;
  background-color: #1d1d1f;
  z-index: 4;
  transition: 500ms;
  overflow-y: auto;
  font-family: 'Architects Daughter';
}
#sidebar.active {
  left: 0px;
}
  
.Sidebar-List {
  list-style-type: none;
  padding: 0px;
  width: 100%;
}
  
.Sidebar-Button{
  text-decoration: none;
  display: flex;
  justify-content: left;
  color: #FFFFFF;
  transition: all 0.5s;
  cursor: pointer;
  margin-bottom: 8px;
  padding: 10px;
  background-color: #2b2c2c;
  font-size: 20px;
  border-radius: 7px;
  box-shadow: 
  #00000040 0px 54px 55px, 
  #0000001f 0px -12px 30px, 
  #0000001f 0px 4px 6px, 
  #0000002b 0px 12px 13px, 
  #00000017 0px -3px 5px;
}
.Sidebar-Button:hover  {
  background-color: #696969;
}

  @media  (max-width:425px) {
    #sidebar{
        width: 100vw;
        position: fixed;
        left: -430px;
    }
  }