* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0d0d0d;
    color: #33ff33;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .terminal {
    width: 90%;
    max-width: 800px;
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.7);
    border: 2px solid #33ff33;
  }
  
  .output {
    padding: 10px;
    font-size: 1.1em;
  }
  
  .command {
    color: #33ff33;
    margin-bottom: 10px;
  }
  
  .output-text {
    color: #00ff00;
    margin-left: 20px;
    margin-bottom: 10px;
  }
  
  .highlight {
    color: #ff6600;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .terminal {
      width: 100%;
      padding: 15px;
    }
  
    .output {
      font-size: 1em;
    }
  }
  