* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #0b0b1a;
  display: flex; justify-content: center; align-items: center;
  min-height: 100vh; font-family: 'Courier New', monospace;
}
#wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
#game {
  image-rendering: pixelated;
  border: 4px solid #4a4a8a;
  box-shadow: 0 0 24px #2a2a5a;
  background: #05050f;
}
#typer {
  width: 480px; padding: 10px; font-size: 20px;
  font-family: 'Courier New', monospace;
  background: #10102a; color: #7CFC00;
  border: 3px solid #4a4a8a; outline: none;
  text-align: center; letter-spacing: 2px;
}
#typer:focus { border-color: #7CFC00; }