#sidebar {
  width: 200px;
  position: absolute;
  height: 100%;
  left: -300px;
  transition: left 0.8s ease;
}

#sidebar.visible {
  left: 0px;
  transition: left 0.9s ease;
}
#sidebar ul li {
  cursor: pointer;
}

.scrolling-words-container {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
}

.scrolling-words-box {
  height: 3rem;
  margin: auto;
  overflow: hidden;
}
.scrolling-words-box ul {
  margin: 0 0.625rem;
  padding: 0;
  animation: scrollUp 4s infinite;
}
.scrolling-words-box ul li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 3rem;
  list-style: none;
}

@keyframes scrollUp {
  15%,
  25% {
    transform: translateY(-20%);
  }
  40%,
  50% {
    transform: translateY(-40%);
  }
  65%,
  75% {
    transform: translateY(-60%);
  }
  90%,
  100% {
    transform: translateY(-80%);
  }
}
