@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Roboto:ital,wght@0,900;1,900&display=swap');
body {
  padding: 0;
  margin: 0;
}

section {
  height: 100vh;
  margin: 0;
  padding: 0;
  background: linear-gradient(45deg, rgb(196, 19, 196), rgb(80, 80, 240));
  background-size: cover;
  background-repeat: no-repeat;
}

svg {
  width: 100%;
  height: 350px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

svg text {
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.03);
  font-size: clamp(30px, 15vw, 150px);
  font-family: Roboto;
  stroke: white;
  stroke-linejoin: round;
  stroke-width: 2px;
  stroke-dasharray: 10;
  animation: animate 1500ms linear infinite alternate;
}

@keyframes animate {
  100% {
    stroke-dasharray: 70;
  }
}
