@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Pacifico&display=swap');

body {
  font-family: 'Pacifico', cursive;
  background: linear-gradient(135deg, #ffb6c1, #ffe680, #b0e57c, #a084ca);
  background-size: 400% 400%;
  animation: aurora 20s ease infinite;
  color: #4a2e2e;
  text-align: center;
  padding: 3rem;
}

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

h1 {
  font-family: 'Monoton', cursive;
  font-size: 4rem;
  color: #ff69b4;
  text-shadow: 3px 3px 6px #fff176;
  margin-bottom: 2rem;
}

p {
  font-size: 1.4rem;
  margin: 1.2rem 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
}

ul li {
  font-size: 1.3rem;
  margin: 0.6rem 0;
  color: #6a1b9a;
}

img {
  max-width: 320px;
  border-radius: 30px;
  margin: 1.5rem 0;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

a {
  color: #00c853;
  text-decoration: none;
  font-weight: bold;
}
