.menu-wrapper {
  height:100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.menu-button {
  text-decoration: none;
  background: blue;
  display: inline-block;
  position: absolute;
  top: 40px;
  left: 40px;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 3px 3px 1px #ccc;
}


.batsu {
  display: block;
  position: relative;
  width: 16px;
  height: 26px;
}

.batsu::before, .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  background: #fff;
}

.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.menu-wrapper__link {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  margin-top: 18%;
}


.menu-link {
  text-decoration: none;
  color: blue;
  font-size: 26px;
}

.logout-button {
  color: blue;
  font-size: 26px;
}
