/* Genel stil */
body {
  font-family: Arial, sans-serif;
  background-color: #384565;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  display: inline-block; /* Diğer içeriklerin yan yana olmasını sağlar */
  text-align: left; /* İçerikleri soldan başlatır */
  max-width: 600px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #007bff;
}

p {
  margin-bottom: 15px;
}

input[type="text"], button {
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  border: none;
  background-color: #f5f5f5; /* Açık gri */
  color: #333; /* Yazı rengi */
  cursor: pointer;
}

input[type="text"]:focus {
  outline: none;
}

button:hover {
  background-color: #0056b3;
}

#wordToGuess {
  font-size: 24px;
  margin-bottom: 20px;
}

#message {
  font-weight: bold;
  color: red;
  margin-top: 20px;
}

#guessedLetters, #remainingGuesses {
  font-style: italic;
}

.hidden {
  display: none;
}
