body {
  background-color: #000;
  color: #00ff66;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
}

a[href] {
    text-decoration: none;
    background-color: #000;
    color: #00ff66;
}

::selection {
  background: #005f2f; /* dark green background */
  color: #00ff66;       /* terminal-green text */
}

#boot-container {
  max-width: 100%;
  max-height: 100%;
  font-size: 16px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-y: auto;
}

#cursor {
  display: inline-block;
  width: 10px;
  height: 1em;
  background-color: #00ff66;
  margin-left: 4px;
  animation: blink 1s steps(2, start) infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  to {
    background-color: transparent;
  }
}
