
body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
 
  overflow: hidden;

  font-family: 'Poppins', sans-serif;
  background-image: url("https://summerinndreamland.neocities.org/img/undefined%20(50).jpg"); /* ← replace with your image path or link */
  background-size: cover;       /* make sure it covers the whole screen */
  background-position: center;  /* center the image */
  background-repeat: no-repeat; /* no repeating tiles */

  /* Optional: add a soft overlay to make text/cards readable */
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.3)
}


/* Blurred card */
.magic-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 50px;
  text-align: center;
  width: 380px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 10;
}

/* GIFs */
.gif {
  position: absolute;
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.gif.left {
  left: 80px;
  bottom: 100px;
}

.gif.right {
  right: 80px;
  bottom: 100px;
}

/* Background video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

/* Buttons */
button {
  background: #a1ffce;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

button:hover {
  background: #8ee0b8;
  transform: scale(1.05);
}
.center-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5; /* below card but above background */
}

.center-media img {
  width: 200px;
  height: auto;
  opacity: 0.9;
  animation: float 4s ease-in-out infinite;
}

/* gentle floating effect */
@keyframes float {
  0%, 100% { transform: translate(-50%, -52%); }
  50% { transform: translate(-50%, -48%); }
}

