body {
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

#container {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  position: relative; /* Create a stacking context */
}

#word-overlay {
  font-size: 40px;
  color: #aaa; /* Semi-transparent gray color */
  position: absolute;
  pointer-events: none; /* Allow clicks to pass through */
}

#input-wrapper {
  position: relative; /* Create a stacking context for input and overlay */
}

#input, #input::placeholder {
  font-family: monospace;
  font-size: 40px;
  color: black;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none;
}

#wrong {
  color: #ff0000; /* Show incorrect characters in red */
}

.correct {
  color: #000000;
}
