body {
    margin: 0;
    background-color: #0a0a0a;
    color: #00ffcc;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 1.1rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .terminal {
    max-width: 90%;
    white-space: pre-wrap;
    line-height: 1.5;
  }
  
  .cursor {
    animation: blink 1s step-end infinite;
  }
  
  @keyframes blink {
    from, to { opacity: 1 }
    50% { opacity: 0 }
  }
  