.home-star {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  text-decoration: none;
  color:#fff5fb ;
  text-shadow:
    0 0 5px #ffc8f8,
      0 0 10px #ffd6ff,
      0 0 20px #ffc8f8,
      0 0 35px #ff99dd,
      0 0 60px #ffb3f3;
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
}

.home-star:hover {
  transform: scale(1.3) rotate(10deg);
  text-shadow:
    0 0 10px #fff,
    0 0 18px #ffeb3b,
    0 0 30px #ffff66;
  color: white;
  cursor: pointer;
}

body {
  background-image: url("dreamy-flowers.png");
  background-repeat: repeat-y;
  background-size: contain;
  background-attachment: fixed; /* stays in place while scrolling */
  background-position: center top;
}
.duaa-sparkle {
     position: fixed;          /* stays in place */
    top: 17%;                 /* vertical position */
    left: 10px;    
    font-family: 'Great Vibes', cursive;
    font-size: 170px;
    color: #fff5fb;
    text-shadow: 
      0 0 5px #ffc8f8,
      0 0 10px #ffd6ff,
      0 0 20px #ffc8f8,
      0 0 35px #ff99dd,
      0 0 60px #ffb3f3;
    animation: sparkle 2s infinite alternate;
  }

  @keyframes sparkle {
    0% { text-shadow: 0 0 5px #ffc8f8, 0 0 10px #ffd6ff; }
    100% { text-shadow: 0 0 10px #ffd6ff, 0 0 25px #ff99dd, 0 0 50px #ffb3f3; }
  }
/* Start https://www.cursors-4u.com */ * {cursor: url(https://ani.cursors-4u.net/nature/nat-11/nat1048.cur), auto !important;} /* End https://www.cursors-4u.com */



body::before {
  content: "";
  position: fixed;
  inset: -30%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 40%, transparent 70%);
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}
