h1 {
  font-family: 'Pacifico', cursive;
  font-size: 5rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 3px;
  margin-top: 40px;

  background: linear-gradient(90deg, #ff8ccf, #ff4db8, #ff71d1, #ffb7e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;

 
  text-shadow:
    0 0 3px #ff8ccf,
    0 0 6px #ff4db8,
    0 0 10px #ff71d1;

  animation: sparkle 1.2s infinite alternate ease-in-out;
}

h1:hover {
  text-shadow:
    0 0 3px #ff8ccf,
    0 0 6px #ff4db8,
    0 0 10px #ff71d1;
}

@keyframes sparkle {
  0% {
    text-shadow:
      0 0 3px #ff8ccf,
      0 0 6px #ff4db8,
      0 0 10px #ff71d1;
  }
  50% {
    text-shadow:
      0 0 5px #ff8ccf,
      0 0 8px #ff4db8,
      0 0 12px #ff71d1;
  }
  100% {
    text-shadow:
      0 0 3px #ff8ccf,
      0 0 6px #ff4db8,
      0 0 10px #ff71d1;
  }
}



body {

  background: linear-gradient(135deg, #ffe6f0, #ffb6d5, #ff69b4);
  background-size: 400% 400%;
  animation: bgMove 15s ease isnfinite;
  font-family: 'Pacifico', cursive;
  font-weight: normal;
  font-size: 18px; 
  line-height: 1.6; 
  overflow-x: hidden;
  position: relative;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h2, h3, h4 {
  color: #ff69b4;
  text-align: center;
  border: 2px dashed #ff1493;
  padding: 15px;
  border-radius: 25px;
  background: rgba(255,182,193,0.3);
  text-shadow: 0 0 10px #fff, 0 0 20px #ff69b4, 0 0 30px #ff1493;
  transition: all 0.3s ease;
  font-size: 2em;
  font-weight: normal;
}

h1:hover, h2:hover, h3:hover, h4:hover {
  color: #fff;
  background-color: #ff1493;
  box-shadow: 0 0 25px #ff69b4, 0 0 40px #ff1493;
}


p {
  background: #ff69b4;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 0 15px #ff1493, 0 0 25px #ff69b4;
  transition: all 0.3s ease;
  font-size: 1.2em; 
}

p:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff1493, 0 0 40px #ff69b4, 0 0 50px #fff;
}


img {
  width: 97%;
  height: 200px;
  object-fit: cover;
  border: 5px solid #ff1493; 
  border-radius: 20px;
  box-shadow: 0 0 15px #ff1493, 0 0 25px #ff69b4, 0 0 35px #fff;
  transition: all 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff1493, 0 0 40px #ff69b4, 0 0 60px #fff;
}

div {
  margin: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 50px;
}
a {
  text-decoration: none; 
  color: inherit;        
}
strong {
  font-weight: normal;
}