@import url(https://fonts.googleapis.com/css?family=Montserrat);

html, body{
  height: 80%;  /*   100%*/ 
  font-weight: 800;
  margin: 0;
  padding: 0;
}

body{
/*  background: #030321; */  /*change to black*/
  font-family: Arial;
}

.container {
  display: flex;
/*   border:1px solid red; */
  height: 50%;
  align-items: center;
}

svg {
    display: block;
    font: 3.5em 'Montserrat'; /*10.5/ 
    width: 130px;   /* 260 */
    height: 150px;  /* 300 */
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 4px;    /* 5px*/
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
	stroke: #4D163D;
	animation-delay: -1;
}

.text-copy:nth-child(2){
	stroke: #840037;
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	stroke: #BD0034;
	animation-delay: -3s;
}

.text-copy:nth-child(4){
	stroke: #BD0034;
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	stroke: #FDB731;
	animation-delay: -5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}


