body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3e2d0;
  font-family: "Amiri", serif;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5e8d0;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 360px;
  height: 90%;
  max-height: 740px;
  overflow: hidden;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.images-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

#circle-red {
  background-color: #ff6f61;
}

.circle-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

#circle-yellow {
  background-color: #ffd700;
}

#circle-green {
  background-color: #90ee90;
}

.circle:hover {
  transform: scale(1.1);
}

.option {
  background-color: transparent;
  border: none;
  font-size: 1.2em;
  color: #333;
  cursor: pointer;
  margin-top: 20px;
}

#result-message {
  font-size: 18px;
  margin-top: 20px;
  min-height: 24px; /* Para asegurar que el mensaje no desplace el contenido al aparecer */
}

.next-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  font-size: 1.2em;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.next-button:hover {
  color: #000;
}

.bottom-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.arrow-button img,
.home-button img {
  width: 50px;
  height: 50px;
}

.arrow-button,
.home-button {
  text-decoration: none;
  transition: transform 0.3s;
}

.arrow-button:hover,
.home-button:hover {
  transform: translateY(-2px);
}
