svg {
  font-family: Franklin Gothic;
    text-shadow: 0 0 2px #2c2c2c;
    width: 100%;
   
}

svg text {
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: #365FA0;
   
}

#text1{
     font-size: 70px;
 
}


@keyframes stroke {
    0% {
        fill: rgba(0, 0, 0, 0);
        stroke: #00ffff;
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 2;
    }
    70% {
        fill: rgba(72,138,204,0);
        stroke: #FF00FF;
    }
    80% {
        fill: rgba(72,138,204,0);
        stroke: #ffff00;
        stroke-width: 3;
    }
    100% {
        fill: #232323;
        stroke: rgba(54,95,160,0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.textmov {
    background-color: none;
}