
body {
  overflow: hidden; /* Hide scrollbars */
}


.sidetext {
    color: grey;
    line-height: 18px;
    text-align: justify;
}

#sidebar {
  position: absolute;
  z-index: 5;
  left: 0px;
    top: 0px;
  width: 35%;
background-color: transparent;
  height: 1000px;
overflow: hidden;
transition: all 0.8s ease-in-out;
padding: 20px;

    
}

#sidebar.collapsed {
  left: 0px;
    top: -1000px;
}


#sidebar2 {

  position: absolute;
  z-index: 5;
  left: 400px;
    top: 0px;
  width: 35%;
background-color: transparent;
  height: 600px;
overflow: hidden;
transition: all 0.8s ease-in-out;
padding: 20px;

    
}

#sidebar2.collapsed {
  left: 0px;
    top: -600px;
}




#button {
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  width: 5px;
  height: 3px;
  border: none;
  outline: none;
  background: white;
  margin: 20px;
  cursor: pointer;
}

#button-middle {
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: none;
  outline: none;
  background: grey;
  margin: 20px;
  cursor: pointer;
}


