/* Optional: import a pixel font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

body {
  background: #000;
  color: #00ff00;
  font-family: 'Orbitron','VT323', 'Share Tech Mono', 'Courier New', Courier, monospace;
  margin: 0;
  min-height: 100vh;
}

header {
  padding: 2rem 0 1rem 2rem;
}

h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 16px #00ff00 ;
  font-family: inherit;
}

main {
  padding: 2rem;
}

pre {
  font-size: 1.2rem;
  font-family: inherit;
  text-shadow: 0 0 4px #00ff00;
}

/* Pixelated effect for text */
body, h1, pre {
  image-rendering: pixelated;
}

