body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #ffd6e8, #fff0f5);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.container {
  padding: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #d6336c;
}

.buttons button {
  font-size: 1.2rem;
  padding: 15px 25px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#yes {
  background-color: #ff69b4;
  color: white;
}

#no {
  background-color: #f08080;
  color: white;
  position: absolute;
}

.flowers {
  font-size: 2rem;
  margin-top: 20px;
  animation: floatFlowers 5s ease-in-out infinite;
}

.heart {
  position: fixed;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 9999;
  transform: translateX(-50%); /* center heart horizontally over x */
}

@keyframes floatFlowers {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Mobile friendliness */
@media(max-width: 600px){
  h1 { font-size: 1.5rem; }
  .buttons button { font-size: 1rem; padding: 10px 20px; }
  .flowers { font-size: 1.5rem; }
}
