* {
  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%);
  animation: fill 0.5s ease forwards 3.5s;
}
#logo path:nth-child(1) {
  stroke-dasharray: 458px;
  stroke-dashoffset: 458px;
  animation: line-anim 2s ease forwards;
}
#logo path:nth-child(2) {
  stroke-dasharray: 523px;
  stroke-dashoffset: 523px;
  animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(3) {
  stroke-dasharray: 566px;
  stroke-dashoffset: 566px;
  animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(4) {
  stroke-dasharray: 472px;
  stroke-dashoffset: 472px;
  animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(5) {
  stroke-dasharray: 497px;
  stroke-dashoffset: 497px;
  animation: line-anim 2s ease forwards 1.2s;
}
#logo path:nth-child(6) {
  stroke-dasharray: 345px;
  stroke-dashoffset: 345px;
  animation: line-anim 2s ease forwards 1.5s;
}
#logo path:nth-child(7) {
  stroke-dasharray: 231px;
  stroke-dashoffset: 231px;
  animation: line-anim 2s ease forwards 1.8s;
}
#logo path:nth-child(8) {
  stroke-dasharray: 444px;
  stroke-dashoffset: 444px;
  animation: line-anim 2s ease forwards 2.1s;
}
#logo path:nth-child(9) {
  stroke-dasharray: 472px;
  stroke-dashoffset: 472px;
  animation: line-anim 2s ease forwards 2.4s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: white;
  }
}
