.terminal-window {
    left: 0;
    width: 50em;
    aspect-ratio: 5 / 2.5;
  }

.terminal-content {
    margin: 0;
    padding: 0;
  }

  .terminal {
    background-color: black;
    width: 100%;
    padding: 2rem;
    color: #ff2c6d;
    font-family: Consolas, monospace;
    font-size: clamp(14px, 2.2vw, 28px);
    line-height: 1.2;
    white-space: pre-wrap;
    box-sizing: border-box;
    height: 100%;
  }

  .terminal-wrapper {
    height: 10em;
  }

  .cursor {
    display: inline-block;
    width: 0.1em;
    height: 1em;
    background: #ff2c6d;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: bottom;
  }

  @keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
  }