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%; }
}

h1, 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;        
}
