body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  text-align: center;
}

#hangman-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hangman {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border: 2px solid #333;
  margin-bottom: 20px;
  background-image: url('hangman0.png');
  background-repeat: no-repeat;
  background-position: center;
}

#word {
  font-size: 24px;
  margin-bottom: 10px;
}

#guesses {
  font-size: 16px;
  margin-bottom: 10px;
}

#letters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.letter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #333;
  margin: 5px;
  font-size: 20px;
  cursor: pointer;
}

#reset {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  display: none;
}