body {
  font-family: 'Arial', sans-serif;
  background: #ffe6f0;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}

.question-container img {
  width: 150px;
}

.result-container {
  display: none;
}

h1, h2 {
  font-size: 32px;
  margin: 20px 0;
  color: #222;
}

.buttons {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 18px;
  border: none;
  border-radius: 20px;
  background-color: #ff5e8e;
  color: white;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.1);
}

#noBtn {
  position: absolute;
}

.gif-box img {
  width: 200px;
  margin: 10px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.heart-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.heart {
  position: absolute;
  color: red;
  font-size: 20px;
  animation: fall 3s linear infinite;
  opacity: 0.8;
}

@keyframes fall {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}