body {
  font-family: Arial, sans-serif;
  background-color: #f0f8ff;
  color: #333;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 20px;
}

#buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.choice-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.choice-button img {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.choice-button:hover img {
  transform: scale(1.1);
}

.text-button {
  background-color: #0077cc;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.text-button:hover {
  background-color: #005fa3;
}

#messages {
  margin-top: 20px;
  font-size: 1.2rem;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: inline-block;
  text-align: left;
}

#messages p {
  margin: 5px 0;
}

@media (max-width: 600px) {
  .choice-button img {
    max-width: 80px;
  }

  h1 {
    font-size: 2rem;
  }

  #messages {
    font-size: 1rem;
    padding: 8px;
  }
}
