    body {
      background-color: black;
      color: #33FF33;
      font-family: monospace;
      padding: 20px;
    }
    #terminal {
      white-space: pre-wrap;
      line-height: 1.5;
    }
    .cursor {https://neocities.org/site_files/text_editor?filename=index.html#
      display: inline-block;
      width: 10px;
      background-color: #33FF33;
      animation: blink 1s infinite;
      margin-left: 2px;
    }
    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 1; }
    }