
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");

svg {
	font-family: "Russo One", sans-serif;
	width: 100%; height: 100%;
}
svg text {
	animation: stroke 5s infinite alternate;
}
@keyframes stroke {
	0%   {
		fill: rgba(68,192,192,0); stroke: rgb(26, 201, 207);
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
	}
	70%  {fill: rgba(68,192,192,0); stroke: rgba(26, 201, 207); }
	80%  {fill: rgba(68,192,192,0); stroke: rgba(26, 201, 207); stroke-width: 3; }
	100% {
		fill: rgba(68,192,192,1); stroke: rgba(41,74,73,0);
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
	}
}