
/* Buttons */

:root {
  /* Variables */
  --button_radius: 0.75em;
  --button_color: #e8e8e8;
  --button_outline_color: #000000;
}

.games-container {
  position: fixed;
  top: 30px;
  white-space: nowrap;
}

/* ------------------------------ */

.games-container button {
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
}

.button_top {
  display: block;
  box-sizing: border-box;
  border: 2px solid var(--button_outline_color);
  border-radius: var(--button_radius);
  padding: 0.75em 1.5em;
  background-color: var(--button_color);
  color: var(--button_outline_color);
  transform: translateY(-0.2em);
  transition: transform 0.1s ease;
}

.games-container button:hover .button_top {
  /* Pull the button upwards when hovered */
  transform: translateY(-0.33em);
}

.games-container button:active .button_top {
  /* Push the button downwards when pressed */
  transform: translateY(0);
}

/* btnTheme */

.btnTheme {
  border-radius: 10px;
  padding: 2px 8px;
  background: none;
  border: 2px solid black;
  cursor: pointer;
  transition: transform 0.1s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.btnTheme:hover {
  transform: translateY(-0.13em);
}

.btnTheme:active {
  transform: translateY(0);
}
