@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

 body {
      margin: 0;
      overflow: auto;
      background: black;
      cursor: crosshair;
    }
    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      display: block;
    }

    #container
    {
    
         display: flex;
        justify-content: center;
        align-items: center;   
        height: 80vh;           
        text-align: center;   

    }
        
    #title
    {
      
      font-family: Montserrat;
      font-size: 80px;
      user-select:  none;
      text-align: center;
      color: #FFFFFF;
      animation: neonsign 10s infinite;

    }

    @keyframes neonsign {
        0%, 19%, 22%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
     0 0 5px #FF00AA,
      0 0 10px #FF00AA,
      0 0 20px #FF00AA,
      0 0 40px #FF00AA,
      0 0 80px #FF00AA;
    opacity: 1;
  }
  20%, 24%, 55% {
   
    text-shadow: none;
    opacity: 0.3;

    }
  }
