@import url('https://fonts.googleapis.com/css?family=Open+Sans:800');

/* Main styles */
.text {
  fill: none;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-dasharray: 70 350; /* Adjusted dash and space values */
  stroke-dashoffset: 0;
  animation: stroke 6s infinite linear;
  font-family: 'Open Sans', sans-serif;
  font-size: 5em; /* Adjusted font size */
  text-transform: uppercase;
}

.text1 {
  stroke: #F2385A;
  animation-delay: -1.2s;
}

.text2 {
  stroke: #F5A503;
  animation-delay: -2.4s;
}

.text3 {
  stroke: #E9F1DF;
  animation-delay: -3.6s;
}

.text4 {
  stroke: #56D9CD;
  animation-delay: -4.8s;
}

.text5 {
  stroke: #3AA1BF;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: -350; /* Adjusted dash offset value */
  }
}

/* Other styles */
html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #d9d9d9;
  background-size: .2em 100%;
  font-family: 'Open Sans', sans-serif;
}
