@import url(https://fonts.googleapis.com/css?family=Montserrat);

html, body{
  height: 100%;
  font-weight: 800;
}

body{
  display: flex;
  background: purple;
  font-family: Arial;
}

svg {
    display: block;
    font: 25.5em 'Montserrat';
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

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

.text-copy:nth-child(1){
	stroke: hsl(317, 77%, 49%);
	animation-delay: -1;
}

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

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

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

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

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