/* Style.css */

/* Reset y fuente básica */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* 1) Asegura que html y body ocupen el 100% de altura */
  html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
  }

  main.contenedor {
    flex: 1;
  }

  /* Centra horizontal y verticalmente la pantalla de error */
.error-screen {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente */
  align-items: center;     /* centra horizontalmente */
  height: 100vh;           /* ocupa toda la altura de la ventana */
  text-align: center;
}

.error-screen img {
  max-width: 150px;
  margin-bottom: 1rem;
}

#contenedor-invisible {
  display: none;
}