    body {
      margin: 0;
      background: #0b0f12;
      color: #c8f8ff;
      font-family: monospace;
      font-size: 18px;
      display: flex;
      /* justify-content: top; */
      align-items: top;
      height: 100vh;
    }
    .terminal {
      width: 90%;
      max-width: 800px;
      background: #00000060;
      padding: 20px;
      border-radius: 6px;
      border: 1px solid #1f272b;
    }
    #inputLine {
      display: flex;
      white-space: pre;
    }
    #prompt {
      color: #ffffff;
      margin-right: 6px;
    }
    #userInput {
      outline: none;
      border: none;
      background: none;
      color: #c8f8ff;
      font-family: inherit;
      font-size: inherit;
      flex: 1;
    }