#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
  padding: 20px;
  white-space: pre-line;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  transition: opacity 1s ease-in-out;
  z-index: 99999;
}
@media (max-width: 600px) {
  #boot-screen {
    font-size: 12px;
    padding: 10px;
  }
}

.fade-out {
  opacity: 0;
}

.blinking-cursor {
  display: inline-block;
  width: 10px;
  color: #00ff00;
  font-weight: bold;
  animation: blink 0.6s infinite alternate;
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0; }
}