/* Estilos generales */
body {
  background-color: #1a1a1a; /* Fondo oscuro */
  color: #00ff00; /* Texto verde retro */
  font-family: 'IBM Plex Mono', monospace; /* Tipografía retro */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Contenedor principal */
.container {
  text-align: center;
  padding: 20px;
}

/* Estilo del título */
h1 {
  margin-bottom: 20px;
  font-size: 24px;
}

/* Mapa ASCII */
.ascii-map {
  font-size: 16px;
  line-height: 1.2;
  border: 2px solid #00ff00; /* Borde verde retro */
  padding: 10px;
  display: inline-block;
  white-space: pre-wrap; /* Asegura que los saltos de línea se respeten */
}
