body {
  font-family: "Roboto", sans-serif;
  text-align: center;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  padding: 50px;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.choices {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.choice {
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 2em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.choice:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#result {
  font-size: 1.5em;
  color: #333;
  margin-top: 20px;
  white-space: pre-line; /* Permite saltos de línea */
}
