      /* FLOATING CODE */

      .code {
        position: absolute;
        font-family: monospace;
        color: #22d3ee;
        opacity: 0.25;
        font-size: 14px;
        animation: float 20s linear infinite;
      }

      @keyframes float {
        0% {
          transform: translateY(100vh);
        }
        100% {
          transform: translateY(-200px);
        }
      }

        /* PARTICLES */

      #particles {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: -1;
      }