
.bar1,
.bar5 {
  opacity: 0;
}

.hamburger.change div {
  background-color: white;
}

.change .bar2 {
  transform: translate(-20px, 1px);
  opacity: 0;
}

.change .bar3 {
  opacity: 0;
  transform: translate(20px, 0);
}

.change .bar4 {
  opacity: 0;
  transform: translate(-20px, -1px);
}

.change .bar1 {
  opacity: 1;
  transform: translateY(22px) rotate(45deg);
}

.change .bar5 {
  opacity: 1;
  transform: translateY(-22px) rotate(-45deg);
}

.slidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(to bottom, #333, #222, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: height 0.3s ease;
}

.slidebaropen {
  height: 500px;
}

.slidebarclose {
  height: 0;
}

#slideBar a {
  width: 100%;
  padding: 10px 0px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  text-align: center;
}

#slideBar a:hover {
  background-color: #575757;
}
