body{
  background:black;
  font-family: system-ui, Helvetica;
  line-height: 1.5;
  font-weight: 100;
}
.logo-container {
  width: 80vw;
  max-width: 80rem;
  margin: 0 auto;
}

svg {
  width: 100%;
  height: auto;
  display: block;
  font-weight: 700;
}

svg text {
  font-size: 15rem;
  stroke-width: 5;
  letter-spacing: -4px;
}

svg text.text-logo {
  stroke: #ffffff;
  animation: 5s infinite alternate animate-text;
}

svg text.text-logo2 {
  stroke: #ffffff;
font-size:5rem;
  animation: 5s infinite alternate animate-text;
}

@keyframes animate-text {
  0% {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 5;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 32%;
  }
  50% {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 5;
  }
  80%, 100% {
    fill: #ffffff;
    stroke: transparent;
    stroke-width: 0;
    stroke-dashoffset: -25%;
    stroke-dasharray: 32% 0;
  }
}