body {
    font-family: 'Times New Roman', Times, serif
}

svg {
    display: block;
    font: 4.5em 'Montserrat';
    width: 100%;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 5% 29%;
    stroke-width: 2px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1) {
    stroke: #516E91;
    animation-delay: -1;
}

.text-copy:nth-child(2) {
    stroke: #A77135;
    animation-delay: -2s;
}

.text-copy:nth-child(3) {
    stroke: #FFFFFF;
    animation-delay: -3s;
}

.text-copy:nth-child(4) {
    stroke: #BA8A44;
    animation-delay: -4s;
}

.text-copy:nth-child(5) {
    stroke: #B21F0B;
    animation-delay: -5s;
}

@keyframes stroke-offset {
    100% {
        stroke-dashoffset: -35%;
    }
}