.animated-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.animated-logo-svg {
  display: flex;
  color: white;
  font-family: 'Baloo', sans-serif;
  font-size: 90px;
  margin-left: 40px;
}

.animated-logo-text-copy-1 {
  opacity: 0;
  fill: rgba(255,255,255,0);
  stroke-width: 2px;
  stroke-dasharray: 0 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-name: stroke-offset;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.animated-logo-text-copy-2 {
  opacity: 0;
  fill: none;
  stroke-width: 2px;
  stroke-dasharray: 0 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-name: stroke-offset;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.animated-logo-text-copy-3 {
  opacity: 0;
  fill: none;
  stroke-width: 2px;
  stroke-dasharray: 0 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-name: stroke-offset;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.animated-logo-text-copy-4 {
  opacity: 0;
  fill: none;
  stroke-width: 2px;
  stroke-dasharray: 0 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-name: stroke-offset;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.animated-logo-text-copy-5 {
  opacity: 0;
  fill: none;
  stroke-width: 2px;
  stroke-dasharray: 0 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-name: stroke-offset;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.animated-logo-text-copy-1:nth-child(1) {
  stroke: #2196F3;
  animation-delay: 0.1s;
}
.animated-logo-text-copy-1:nth-child(2) {
  stroke: #8BC34A;
  animation-delay: 0.2s;
}
.animated-logo-text-copy-1:nth-child(3) {
  stroke: #AA32BF;
  animation-delay: 0.3s;
}
.animated-logo-text-copy-1:nth-child(4) {
  stroke: #FF9800;
  animation-delay: 0.4s;
}
.animated-logo-text-copy-1:nth-child(5) {
  stroke: #FFFFFF;
  animation-delay: 0.5s;
}



.animated-logo-text-copy-2:nth-child(1) {
  stroke: #2196F3;
  animation-delay: 0.3s;
}
.animated-logo-text-copy-2:nth-child(2) {
  stroke: #8BC34A;
  animation-delay: 0.4s;
}
.animated-logo-text-copy-2:nth-child(3) {
  stroke: #AA32BF;
  animation-delay: 0.5s;
}
.animated-logo-text-copy-2:nth-child(4) {
  stroke: #FF9800;
  animation-delay: 0.6s;
}
.animated-logo-text-copy-2:nth-child(5) {
  stroke: #FFFFFF;
  animation-delay: 0.7s;
}



.animated-logo-text-copy-3:nth-child(1) {
  stroke: #2196F3;
  animation-delay: 0.4s;
}
.animated-logo-text-copy-3:nth-child(2) {
  stroke: #8BC34A;
  animation-delay: 0.5s;
}
.animated-logo-text-copy-3:nth-child(3) {
  stroke: #AA32BF;
  animation-delay: 0.6s;
}
.animated-logo-text-copy-3:nth-child(4) {
  stroke: #FF9800;
  animation-delay: 0.7s;
}
.animated-logo-text-copy-3:nth-child(5) {
  stroke: #FFFFFF;
  animation-delay: 0.8s;
}


.animated-logo-text-copy-4:nth-child(1) {
  stroke: #2196F3;
  animation-delay: 0.5s;
}
.animated-logo-text-copy-4:nth-child(2) {
  stroke: #8BC34A;
  animation-delay: 0.6s;
}
.animated-logo-text-copy-4:nth-child(3) {
  stroke: #AA32BF;
  animation-delay: 0.7s;
}
.animated-logo-text-copy-4:nth-child(4) {
  stroke: #FF9800;
  animation-delay: 0.8s;
}
.animated-logo-text-copy-4:nth-child(5) {
  stroke: #FFFFFF;
  animation-delay: 0.9s;
}



.animated-logo-text-copy-5:nth-child(1) {
  stroke: #2196F3;
  animation-delay: 0.6s;
}
.animated-logo-text-copy-5:nth-child(2) {
  stroke: #8BC34A;
  animation-delay: 0.7s;
}
.animated-logo-text-copy-5:nth-child(3) {
  stroke: #AA32BF;
  animation-delay: 0.8s;
}
.animated-logo-text-copy-5:nth-child(4) {
  stroke: #FF9800;
  animation-delay: 0.9s;
}
.animated-logo-text-copy-5:nth-child(5) {
  stroke: #FFFFFF;
  animation-delay: 1.0s;
}

@keyframes stroke-offset {
  0% {
    opacity: 0;
    fill: rgba(255,255,255,0);
  }
  10% {
    opacity: 1;
    fill: rgba(255,255,255,0);
  }
  100% {
    opacity: 1;
    fill: rgba(255,255,255,1);
    stroke-dashoffset: 0;
    stroke-dasharray: 110 100%;
  }
}
