body {
  font-family: Arial, sans-serif;
  background: #F29C85;
  color: #fff;
  text-align: center;
  padding: 20px;
  padding-bottom: 80px;
}

h1 {
  margin-bottom: 10px;
  color:#E3DC74;
}
p{
	color:#E3DC74;
}
#hangman-svg {
  margin: 20px auto;
  display: block;
}

.word {
  font-size: 32px;
  letter-spacing: 10px;
  margin: 20px 0;
  font-weight: bold;
  text-transform: uppercase;
}

.keyboard {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 450px;
  margin: 0 auto;
}

button {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #E3DC74;
  color: white;
  transition: 0.2s;
}

button:hover:not(:disabled) {
  background: #E6DD2E;
}

button:disabled {
  background: #555;
  cursor: not-allowed;
}

.status {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  min-height: 30px;
}

.actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.restart {
  background: #f44336;
}

.hint {
  background: #ff9800;
}

.btn-retour {
  display: inline-block;
  padding: 10px 20px;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-retour:hover {
  background-color: #666;
}