body {
  background-color: #fff0f5;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  text-align: center;
  margin-top: 40px;
}

h1 {
  color: #ff8fb1;
  font-size: 36px;
}

a {
  color: #ff7da5;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

img {
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(255, 128, 171, 0.4);
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.ponyo {
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s;
}