* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Courier New', Courier, monospace;
}
#terminal-container {
  position: relative;
  border: 2px solid #33ff33;
  border-radius: 4px;
  padding: 8px;
  background: #000000;
}
canvas {
  display: block;
  image-rendering: pixelated;
}
#info {
  color: #33ff33;
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.7;
}
