body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  margin: 20px 0;
  font-size: 3rem;
}

.choices {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}

.choice {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.choice i {
  font-size: 60px;
  color: #fff;
  transition: transform 0.3s ease;
}

.choice:hover i {
  transform: scale(1.2);
  color: #ffca28;
}

.choice.selected {
  transform: scale(1.2);
  color: #ff4081;
}

.choice-key {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #ffca28;
}

.results {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}

.result-box {
  text-align: center;
}

.result i {
  font-size: 60px;
  color: #fff;
}

.message {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 30px;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.score {
  margin-top: 20px;
  font-size: 1.5rem;
}

.reset-button {
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reset-button:hover {
  background-color: #f50057;
}

@media (max-width: 768px) {
  h1 {
      font-size: 2.5rem;
  }

  .choice i {
      font-size: 50px;
  }

  .result i {
      font-size: 50px;
  }

  .message {
      font-size: 1.8rem;
  }

  .reset-button {
      padding: 10px 20px;
      font-size: 1rem;
  }
}
