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

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

body{
  background: #030321;
  font-family: Arial;
}

.minimal{ 
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: x-small;
  position: absolute;
  bottom:20px;  
  width :95%;
  margin: 0 auto;  
  text-align: right;
  color:rgb(63, 70, 70);
}

.minimal .txt 
{
  position: relative; 
}

.minimal .txt a{
  color:rgb(63, 70, 70);
}

svg {
    display: block;
    font: 4.5em 'Montserrat';
    width:900px;
    height: 500px;
    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: #1948afef;
	animation-delay: -1;
}

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

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

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

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

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