@font-face {
    font-family: 'VT323';
    src: url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
  }
  
  body {
    color: #33ff33;
    background-color: black;
    font-family: 'VT323', monospace;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
  }
  
  .crt-text {
    text-shadow: 0 0 5px #33ff33;
  }
  
  .top-bar {
    color: #33ff33;
    text-shadow: 0 0 2px #005000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: #001100;
    border-bottom: 2px solid #33ff33;
  }
  
  .content {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
  }
  
  /* Typewriter effect styles */
  #typewriter {
    color: rgb(217, 0, 255);
    text-shadow: 0 0 5px #e100ff;
    text-decoration: underline;
    animation: blink-caret 0.7s step-end infinite;
  }
  
  @keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: rgb(208, 0, 255); }
  }

  #main-title {
    text-align: center;
    margin-top: 10px; /* Adjust as needed to position below the top bar */
  }
