#vis {
    background: #00263a;
    color: #fff;
  }
  
 
  .LastLine {
    fill: #ffffff;
    stroke: #ffffff;
  }
  
  .LastLine {
    stroke-width: 0;
    animation: logo 5s linear infinite;
  }
  
  @keyframes logo {
    0% {
      stroke-width: 0.3pt;
      stroke-dashoffset: 1200;
      fill-opacity: 0;
    }
    50% {
      fill-opacity: 0;
    }
    100% {
      stroke-dashoffset: 0;
      fill-opacity: 1;
      stroke-width: 0pt;
      }
  }