body {
  margin: 0;
  height: 100vh;
  background-image: url("../image/EarlyChristmas.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* Overlay for dark cozy look */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Main content */
.content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 25px #e63946;
  animation: glow 3s ease-in-out infinite alternate;
}

p {
  margin-top: 1rem;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #ffd166;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #e63946, 0 0 30px #e63946;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 40px #ef476f, 0 0 60px #ef476f;
  }
}

/* Falling snow */
.snow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(white 2px, transparent 2px),
    radial-gradient(white 2px, transparent 2px),
    radial-gradient(white 2px, transparent 2px);
  background-size: 20px 20px, 30px 30px, 40px 40px;
  animation: snowfall 10s linear infinite;
  opacity: 0.7;
  z-index: 1;
}

@keyframes snowfall {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 1000px, 0 700px, 0 500px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
}
