body {
  background-color: #FFE4E1; /* light pink */
}

h1 {
  color: #FF69B4; /* hot pink */
  text-align: center;
}

body, input, button, h1, h2, p {
  font-family: 'Century Gothic', 'Arial', sans-serif;
  text-align: center;
}

#display-word {
  font-size: 80px;
  font-weight: bold;
  color: #FF69B4;
}

#game-container {
  background-color: #FFF0F5; /* lavender blush */
  border-radius: 10px;
  box-shadow: 0px 0px 10px #FFC0CB; /* pink */
  padding: 20px;
  margin: 0 auto;
  max-width: 500px;
}

#game-container h2 {
  color: #FF69B4; /* hot pink */
  margin-bottom: 10px;
}

#game-container input[type="text"] {
  border: 2px solid #FF69B4; /* hot pink */
  border-radius: 5px;
  font-size: 24px;
  padding: 5px;
  text-align: center;
  width: 200px;
}

#game-container button {
  background-color: #FF69B4; /* hot pink */
  border: none;
  border-radius: 5px;
  color: #FFFFFF; /* white */
  font-size: 18px;
  margin-top: 10px;
  padding: 10px;
}

#game-container button:hover {
  background-color: #FFC0CB; /* pink */
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

#feedback-message {
	font-size: 1.5em;
	margin-top: 20px;
	color: #FF69B4;
}

.correct {
  color: #FF69B4; /* hot pink */
  font-weight: bold;
}

.incorrect {
  color: #FF0000; /* red */
  font-weight: bold;
}
