body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

#color-word {
  font-size: 48px;
  margin: 20px 0;
  font-weight: bold;
}

#input-box {
  padding: 10px;
  font-size: 16px;
  width: 200px;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #5a67d8;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #434190;
}
