body {
    background-color: #000;
    color: #33ff33;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .terminal {
    width: 90%;
    height: 90%;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #000;
    border: 2px solid #33ff33;
    box-shadow: 0 0 10px #33ff33;
    overflow-y: auto;
    white-space: pre-wrap;
    position: relative;
  }
  
  #terminal-output {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .blinking-cursor {
    color: #33ff33;
    animation: blink 1s step-start infinite;
    font-size: 1rem;
  }
  
  
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  