body {
  margin: 0;
  padding: 0;
  font-family: Consolas, 'Courier New', monospace;
  color: #ccc;
  font-size: 14px;
  background-color: #000;
  background-image: url('Assets/fondo2.gif');
  background-repeat: no-repeat;
  background-position: left top;  /* O right bottom, según donde quieras el arte */
  background-size: cover;         /* O contain, según prefieras */
  min-height: 100vh;
  overflow-x: hidden;
}

/* Contenedor del contenido */
.content-box {
  position: relative;
  max-width: 600px;
  margin: 10vh auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid #333;
  border-radius: 12px;
  z-index: 1;
}

.cmd-content {
  padding: 4px 12px;
  white-space: pre-wrap;
}
