* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  background-color: rgb(32, 35, 48);
}

#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo path:nth-child(2) {
  stroke-dasharray: 572;
  stroke-dashoffset: 572;
  animation: line-anim 2s ease forwards;
}
#logo path:nth-child(3) {
  stroke-dasharray: 464;
  stroke-dashoffset: 464;
  animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(4) {
  stroke-dasharray: 494;
  stroke-dashoffset: 494;
  animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(5) {
  stroke-dasharray: 226.9;
  stroke-dashoffset: 226.9;
  animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(6) {
  stroke-dasharray: 635.7130126953125;
  stroke-dashoffset: 635.7;
  animation: line-anim 2s ease forwards 1.2s;
}
#logo path:nth-child(7) {
  stroke-dasharray: 604.5;
  stroke-dashoffset: 604.5;
  animation: line-anim 2s ease forwards 1.5s;
}
#logo path:nth-child(8) {
  stroke-dasharray: 464;
  stroke-dashoffset: 464;
  animation: line-anim 2s ease forwards 1.8s;
}
#logo path:nth-child(9) {
  stroke-dasharray: 549.1;
  stroke-dashoffset: 549.1;
  animation: line-anim 2s ease forwards 2.1s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
