@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background: linear-gradient(135deg, #0f0, #00cc66, #66ffcc);
  background-size: 400% 400%;
  animation: comicflow 20s ease infinite;
  color: #003300;
  font-family: 'Press Start 2P', cursive;
  margin: 0;
}

@keyframes comicflow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1 {
  color: #006600;
  text-align: center;
  font-size: 2.2em;
  text-shadow: 2px 2px #99ff99;
}

p {
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.6;
  font-size: 1.1em;
  background: rgba(255,255,255,0.7);
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 8px #00cc66;
}

a {
  display: inline-block;
  margin: 20px auto;
  text-decoration: none;
  color: #004400;
  background: #99ff99;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 2px 2px #006600;
  transition: all 0.3s ease;
}

a:hover {
  background: #00cc66;
  color: white;
  transform: scale(1.05) rotate(-2deg);
}

