body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.game-container {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.color-box {
  width: 150px;
  height: 150px;
  margin: 20px auto;
  border: 2px solid #000;
  border-radius: 10px;
}

.color-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.color-options button {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-options button:hover {
  transform: scale(1.1);
}

.instructions {
  font-size: 1.2em;
  margin: 10px 0;
}

.status {
  font-size: 1.1em;
  margin: 10px 0;
  color: #333;
}

.score {
  font-size: 1.1em;
  margin: 10px 0;
}

.new-game-button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

/* Animations */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes celebrate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.wrong {
  animation: fadeOut 0.5s ease;
}

.correct {
  animation: celebrate 0.5s ease;
}
