
body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}
#terminal pre {
  color: #00ff00;
  font-family: 'VT323', monospace;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
  word-break: keep-all;
}

#terminal h1 {
  color: #00ff00;
  font-family: 'VT323', monospace;
  font-size: 2em;
  margin-bottom: 0.5em;
}

#terminal h2 {
  color: #00ff00;
  font-family: 'VT323', monospace;
  font-size: 0.5em;
  margin-bottom: 0.5em;
}

#terminal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 90%;
  transform: translate(-50%, -50%);
  background-color: #000000;
}

@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/vt323@latest/latin-400-normal.woff2) format('woff2'),
       url(https://cdn.jsdelivr.net/fontsource/fonts/vt323@latest/latin-400-normal.woff) format('woff');
}

#terminal {
  font-family: 'VT323', monospace;
  font-size: 1em;
}

/* Mobile styles for the terminal container */
@media screen and (max-width: 480px) {
  #terminal {
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
  }
}

/* Mobile styles for ASCII art inside the terminal */
@media screen and (max-width: 480px) {
  #terminal pre {
    font-size: 0.5em;
    line-height: 1;
  }
}
