.game-settings {
  z-index: 1;
  display: none;
  position: absolute;
  inset: 0;
  background-color: black;

  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 5rem;
  padding: 2rem 0;

  color: rgb(132, 132, 132);
}

.game-settings .text-primary,
.game-settings .text-secondary {
  text-transform: uppercase;
  font-weight: 500;
}

.game-settings .text-primary {
  font-size: 3.5rem;
  color: white;
}

.game-settings .text-secondary {
  font-size: 1.3rem;
}

.game-settings .options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.game-settings .options .sound,
.game-settings .options .music {
  text-align: center;
}

.game-settings .options div:hover .option-level {
  color: #ff7e00;
}

.game-settings .options .sound .sound-adjust,
.game-settings .options .music .music-adjust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.game-settings .options div .option-level {
  font-size: 1.5rem;
  color: white;
  pointer-events: none;
}

.game-settings .options div button {
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5em;
  color: rgb(132, 132, 132);
  background-color: transparent;
  border: none;
}

.game-settings .back-to-menu-btn {
  font-size: 3rem;
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);

  border: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
}

.game-settings .back-to-menu-btn:hover {
  color: #ff7e00;
}
