/* ========== BOOT PAGE (index.css) ========== */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: black;
  font-family: 'Courier New', monospace;
  color: rgb(253, 143, 207);
  overflow: hidden;
}

#boot-container {
  display: flex;
  flex-direction: column;
  justify-content: center;      /* center vertically */
  align-items: center;          /* center horizontally */
  height: 100vh;
  width: 100vw;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}

#boot-bar-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1ch;
}

.boot-line {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}