body {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  font-family: 'Times New Roman';
  color: #4b006e;
  margin: 0;
}
header {
  text-align: center;
  padding: 2em 0;
}
.shiny {
  font-size: 2.5em;
  background: linear-gradient(90deg, #ff97c8, #fff, #c0ffe7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 16px #fff, 0 0 32px #ff97c8;
  animation: shimmer 2s infinite linear;
}
@keyframes shimmer {
  0% {text-shadow: 0 0 16px #fff, 0 0 32px #ff97c8;}
  50% {text-shadow: 0 0 32px #fff, 0 0 64px #ff97c8;}
  100% {text-shadow: 0 0 16px #fff, 0 0 32px #ff97c8;}
}
nav a {
  margin: 0 1em;
  color: #ff97c8;
  font-weight: bold;
  text-decoration: none;
}
nav a:hover {
  text-shadow: 0 0 8px #fff, 0 0 16px #8ec5fc;
}
article {
  background: rgba(255,255,255,0.8);
  border-radius: 24px;
  box-shadow: 0 0 16px #ff97c8, 0 0 32px #8ec5fc;
  margin: 2em auto;
  max-width: 600px;
  padding: 2em;
}
footer {
  text-align: center;
  margin: 2em 0;
  color: #ff97c8;
}
