body {
  background-image: url('../img/guessBackground.jpg');
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
  color: #333;
}

header, footer, #main {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
}

h1, h2 {
  text-align: center;
}

#main {
  max-width: 600px;
  margin: auto;
}

button {
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

input[type="text"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: calc(100% - 22px);
}

#feedback {
  display: inline-block;
  margin-left: 10px;
  color: #ff0000;
}

#guesses, #remainingGuesses, #totalWins, #totalLosses {
  display: block;
  margin-top: 10px;
}
