@font-face {
  font-family: 'Fixedsys Excelsior';
  src: url('FONTS/fixedsysexcelsior.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Fixedsys Excelsior', 'Courier New', monospace;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  min-height: 100vh;
}

#mobile-container {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#title-line {
  display: flex;
  justify-content: flex-start;
  align-items: center;    /* vertical align cursor */
  width: 100%;
  color: #ff0000;
  white-space: pre;
  margin-bottom: 20px;
  font-size: 16px;
}

#typed-text,
#cursor {
  display: inline-block;
  text-align: left;
}


#cursor {
  display: inline-block;
  width: 8px;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

#main-text {
  display: none;
  color: #ffffff;
}

.red {
  color: #ff0000;
}

.comment {
  color: #aaaaaa;
}

.checkbox-container {
  user-select: none;
  cursor: pointer;
}

.checkbox {
  display: inline-block;
  width: 3ch;
  color: #ff0000;
}

.checkbox-container:hover {
  background: #ffffff;
  color: #000000;
}

#enter-button {
  margin-top: 10px;
  color: #ff0000;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  padding: 2px 0;
}

#enter-button:hover {
  background: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .version-tag {
    position: fixed;
    bottom: 30px;
    right: 15px;
    font-size: 12px;
    color: #ff0000;
  }
}
