/* style.css */
body {
  background-image: linear-gradient(to bottom, #000000, #F2A0DD, );
  font-family: 'Rounded M+ 1c', sans-serif;
  text-align: center;
  padding: 50px;
  color: #ff69b4;
}
h1 {
  font-size: 3em;
  animation: fuwafuwa 2s ease-in-out infinite;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

