.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(128, 128, 128);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 160px;
  padding-left: 10px;
  font-family: "Quicksand";
  font-size: 1em;
  font-weight: 400;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #000000;
  background-color: rgb(128, 128, 128);
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 2em;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  position: absolute;
  top: 3.5em;
  left: 1em;
  font-size: 20px;
  cursor: pointer;
  color: var(--clr-bienvenue);
  background-color: var(--clr-gray);
  font-family: "Quicksand";
  /* font-size: 1.2em;
  font-weight: 400; */
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
}

.openbtn:hover {
  background-color: var(--clr-bienvenue);
  color: var(--clr-menu-dark);
}

#main {
  transition: margin-left 0.5s;
  padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 550px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}
