body {
   background-image: url("https://summerinndreamland.neocities.org/images/upscaled_2x_undefined%20(33).jpg"); /* replace with your image path */
  background-size: cover;       /* makes it full screen */
  background-position: center;  /* keeps image centered */
  background-repeat: no-repeat; /* avoids tiling */
  background-attachment: fixed; /* gives soft parallax feel */

  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.magic-card {
  position: absolute;
  top: 50px; /* 👈 50px from top */
  left: 50%;
  transform: translateX(-50%); /* centers horizontally */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 50px;
  width: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.question {
  font-size: 1.8em;
  color: #083b27;
  margin-bottom: 30px;
  font-style: italic;
  font-family: "Amatic SC" , cursive;
}

.buttons {
  display: flex;
  justify-content: space-around;
}

button {
  padding: 10px 25px;
  border: none;
  border-radius: 14px;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yes-btn {
  background-color: #b2f7b9;
  color: #084a2e;
    font-family: "Amatic SC" , cursive;
}

.no-btn {
  background-color: #ffc7c7;
  color: #702121;
    font-family: "Amatic SC" , cursive;
}

.yes-btn:hover {
  background-color: #92f29e;
  transform: scale(1.05);
}

.no-btn:hover {
  background-color: #ffadad;
  transform: scale(1.05);
}
.gif1 {
    position: absolute;
    width: 160px;
    bottom: 200px;
    right: 200px;
    animation: float 6s ease-in-out infinite;
  }

  /* Second GIF */
  .gif2 {
    position: absolute;
    width: 120px;
    top: 260px;
    left: 220px;
    animation: float 5s ease-in-out infinite alternate;
  }

  /* Floating animation */
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }


