@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  margin: 0;
  background: linear-gradient(135deg, #1a001a, #220022);
  color: #ffeeee;
  font-family: 'VT323', monospace;
  text-align: center;
  padding: 4vh 2em;
}

h1 {
  font-size: 3rem;
  color: #ff6699;
  text-shadow:
    0 0 5px #ff3399,
    0 0 10px #ff00cc;
  margin-bottom: 1rem;
}

p {
  font-size: 1.4rem;
  margin: 1.5rem auto;
  max-width: 600px;
  text-shadow:
    0 0 2px #ffccff,
    0 0 5px #cc88cc;
}

em {
  color: #ff99ff;
  font-style: italic;
  text-shadow: 0 0 4px #ff33cc;
}

img {
  margin-top: 2rem;
  filter: contrast(1.4) brightness(0.95) saturate(1.5);
  border: 3px dashed #ff3399;
  box-shadow: 0 0 20px #ff3399;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

img:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: blur(0.8px) hue-rotate(30deg);
}
