body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

.logo {
  width: 50%;
}

.logo path {
  fill: transparent;
  stroke: #000;
  stroke-width: 0.6;
  stroke-dasharray: 1770;
  stroke-dashoffset: 1770;
  animation: draw 3s linear forwards;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1770;
  }
  80% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #000;
  }
}
