body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #222;
  color: white;
}

#game-container {
  position: relative;
  width: 100%;
  height: 500px;
  border: 2px solid white;
  overflow: hidden;
  margin-top: 20px;
  background-color: black;
}

.falling-word {
  position: absolute;
  font-size: 24px;
  color: yellow;
  transition: opacity 0.5s ease-out;
}

.fade-out {
  opacity: 0;
}

#input-box {
  margin-top: 20px;
  padding: 10px;
  font-size: 18px;
  width: 300px;
}

#score {
  margin-top: 40px;
  font-size: 34px;
}

#start-button {
  padding: 10px 20px;
  font-size: 20px;
  font-style: bold;
  background-color: yellow;
  color: black;
  border: none;
  cursor: pointer;
}
