:root {
  --black: #000000;
  --matrix-green: #00FF41;
  --bright-green: #00CC33;
  --amber: #FFB000;
  --cyan: #33CCFF;
  --navy: #1A1A2E;
  --font-display: 'JetBrains Mono', monospace;
  --font-body: 'IBM Plex Mono', monospace;
  --font-utility: 'Fira Code', monospace;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--matrix-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

#app {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
}
