body{
  background:#131313;
  color:#E3E3E3;
  font-family:sans-serif;
}
hr{
  width:100%;
  height:1px;
  color:#FFF;
}

#trial {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  position: relative; }

svg {
  width: 100%;
  height: 100%;
}

#pulsar{
  stroke-dasharray:281;
  -webkit-animation: dash 2.5s infinite linear forwards;
}

#jugular{
  stroke-dasharray:497;
 -webkit-animation: dash 1.4s infinite ease forwards;
}

#bleed{
  stroke-dasharray:437;
  -webkit-animation: dash 1.2s infinite ease-out ;
}
#flat{
  stroke-dasharray:814;
  -webkit-animation:dash 10s infinite linear;
}
/*Animation is the same for all 3 SVG's*/
@-webkit-keyframes dash{
  from{
    
    stroke-dashoffset:814;
  }
  to {
    stroke-dashoffset:-814;
    
  }
  
}