/* The sidepanel menu */
.sidepanel {
  height: auto; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 101; /* Stay on top */
  top: 0;
  right: 0;
  background-color: #1a4a3e; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 30px; /* Place content 30px from the top */
  padding-bottom: 20px;
  transition: 0.2s; /* 0.2 second transition effect to slide in the sidepanel */
  text-align: left;
}

/* The sidepanel links */
.sidepanel a {
  font-family:Trebuchet MS, sans-serif;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #ffed00;
  display: block;
  transition: 0.2s;
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  font-size: 20px;
  cursor: pointer;
  background-color: #1a4a3e;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}