html, body {
  margin: 0; padding: 0; height: 100%;
  background: black; color: #0f0;
  font-family: monospace;
  font-size: 22px;
  overflow: hidden;
}
#bootlog {
  white-space: pre-wrap; padding: 2em;
}
#main {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
#overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  color: #0f0;
  padding: 2em;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.4;
  max-width: 160ch;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  overflow: auto;
  scroll-behavior: smooth;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none;
}
#bg-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
#days-counter {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  left: auto;
  margin: 0.5em;
  padding: 0.25em 0.5em;
  background: rgba(0,0,0,0.5);
  color: #0f0;
  font-family: monospace;
  font-size: 0.9em;
  z-index: 999;
  pointer-events: none;
}

