.menu {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  padding: 13px;
  transform: translateX(0px) translateY(130px);
}

.menu-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 7px 6px;
  text-align: left;
  white-space: nowrap;

  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.05px;

  color: #595e64;
  background: none;
  border: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.5);

  cursor: pointer;
  transition: transform 0.12s ease, color 0.14s ease, text-shadow 0.14s ease, filter 0.14s ease;
}

.menu-btn:hover {
  color: #f1f5fb;
  filter: brightness(1.12);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14),
    0 3px 8px rgba(0, 0, 0, 0.55);
}

/*
.menu-btn:active {
  transform: translateY(1px);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.45);
}
*/

.menu-btn.active {
  transform: translateY(1px);
  color: #ffffff;
  font-weight: 800;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.menu-btn:focus {
  outline: none;
}

.menu-btn,
.menu-btn:hover,
.menu-btn:focus,
.menu-btn:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
