body {
    margin: 0;
    padding: 0;
    font-family: monospace;
    background-color: #000;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  #terminal {
    width: 90%;
    max-width: 800px;
    height: 80%;
    background-color: #000;
    padding: 10px;
    border: 2px solid #00ff00;
    overflow-y: auto;
    box-sizing: border-box;
  }
  

  #terminal-output {
    white-space: pre-wrap;
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 5px;
  }
  

  #terminal-prompt {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .user {
    white-space: nowrap; 
    margin: 0;
    padding: 0;
  }
  
  .cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #00ff00;
    margin-left: 2px;
  }
  
  .blinking {
    animation: blink 1s step-start infinite;
  }
  
  #terminal-input {
    flex: 1; 
    background: none;
    border: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    outline: none;
  }

  #terminal-input:focus {
    outline: none;
  }
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  