 /* The sidenav */
 .sidenav {
  height: 100vh;
  width: 200px;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
}

/* The navigation menu links */
.sidenav a {
  padding: 100px 8px 20px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

/* Page content */
.main {
  margin-left: 50px; /* Same as the width of the sidenav */
} 