/* Paso 0: fondo negro, canvas centrado. Sin dependencias. */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

#terminal {
  background: #000;
  display: block;
  max-width: 95vw;
  max-height: 95vh;
}
