body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 10px;
}

.container {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 90%;
}

h1 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

#yesButton {
  background-color: #4caf50;
  color: white;
}

#noButton {
  background-color: #f44336;
  color: white;
}

#response {
  margin-top: 20px;
  font-size: 20px;
  color: #333;
}

.moving-button {
  position: absolute;
  transition: all 0.5s ease;
}

@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
    justify-content: center;
  }

  button {
    width: auto;
  }
}
.bear {
  display: block;
  margin: 20px auto;
  width: 100px;
}
