@font-face {
  font-family: 'Fixedsys Excelsior';
  src: url('FONTS/fixedsysexcelsior.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000000;
  color: #ffffff;
  font-family: 'Fixedsys Excelsior', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
#boot-log {
  white-space: pre-wrap;
  word-wrap: break-word;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  color: #ff0000;
}
#boot-log.fade-out {
  display: none;
}
#boot-cursor {
  display: inline-block;
  color: #ff0000;
  opacity: 1;
}
#boot-cursor.blink {
  animation: blink 0.7s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
#ascii-window {
  display: none;
  white-space: pre;
  font-size: 17px;
  line-height: 1.4;
  max-width: 1100px;
}
.checkbox-container {
  cursor: pointer;
  user-select: none;
}
.checkbox-container:hover {
  color: #000000;
  background: #ffffff;
}
.checkbox {
  display: inline-block;
  width: 3ch;
}
.button-container {
  cursor: pointer;
  user-select: none;
  display: inline-block;
}
.button-container:hover {
  color: #000000;
  background: #ffffff;
}
.version-tag {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: red;
  font-size: 14px;
  font-weight: 600;
  z-index: 5;
  pointer-events: none; /* so it doesn't block clicks */
}
.error-text {
  color: #888888;
}
.warn-text {
  color: #ff0000;
}
.title-text {
  color: #ff0000;
}
.border-text {
  color: #ff0000;
}