svg {
    font-family: "Russo One", sans-serif;
    width: 100%;
    height: 100%;
}

svg text {
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: #ca9700;
    font-size: 35px;
}

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

/*Quelle: https://www.cssportal.com/*/
