#hangman {
  background-color: transparent; /* show snow behind */
  position: relative;
  z-index: 20;
}

#word {
  font-size: 2em;
  letter-spacing: 10px;
  margin: 20px 0;
}

#letters button, #reset {
  margin: 5px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: transparent;
  color: #ffb86b;
  border: 1px solid #ffb86b;
  border-radius: 6px;
  cursor: pointer;
  image-rendering: pixelated;
  transition: all 0.2s ease-in-out;
}

#letters button:hover, #reset:hover {
  background-color: blue;
}

#letters button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#message {
  font-size: 1.2em;
  margin: 20px 0;
  color: green;
}

#reset {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Buttons default size */
#mobile-controls button {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  padding: 8px 16px;
}

#mobile-controls button:active {
  background-color: blue;
}