#help_modal {
  opacity: 0;
  transform: translateY(226px);
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 400px;
  height: max-content;
  background-color: black;
  padding: 60px 20px 20px 20px;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  border: solid 3px white;

  p {
    text-align: justify;
  }

  &.show {
    opacity: 1;
    transform: translateY(0);
  }
}

.close_help {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: black;
  cursor: pointer;
  transition: 0.3s;
}