*,
html,
body {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
}
body {
  width: 100%;
  height: 100%;
  background-color: #00263a;
}
.logo_animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}
.logo_animation svg {
  width: 100%;
  height: 100%;
}

svg path.st1 {
  fill: transparent;
  stroke-dasharray: 379.0550231933594;
  stroke-dashoffset: 379.0550231933594;
  animation:
    logo-animation 6s linear forwards 5s,
    fill 6s ease forwards 10s;
  animation-delay: 1s;
}
svg path.st0 {
  fill: transparent;
  stroke-dasharray: 379.0550231933594;
  stroke-dashoffset: 379.0550231933594;
  animation:
    logo-animation 4s linear forwards 3s,
    fill 4s ease forwards 10s;
  animation-delay: 2.5s;
}

@keyframes logo-animation {
  0% {
    stroke-dashoffset: 310.51519775390625;
    stroke: #6cc3d5;
    stroke-width: 2px;
  }

  40% {
    /* multiple the initial value of the property*/
    stroke-dashoffset: 621.0303955078124;
    stroke: #6cc3d5;
  }

  60% {
    /* initial value*4 */
    stroke-dashoffset: 1243.060791015625;
    stroke: #fff;
  }

  100% {
    /* initial value*4 */
    stroke-dashoffset: 1243.060791015625;
    stroke: #fff;
  }
}

@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: #fff;
  }
}
