body {
  margin: 0;
  padding: 0;
}
#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

:root {
  --brand-color: #5aad41;
  --animation-time: 4s;
}

#arrayGroup,
#array {
  fill: var(--brand-color);
}

#array4 {
  animation: fadeInArray4 var(--animation-time) ease forwards infinite;
}

@keyframes fadeInArray4 {
  0% {
    transform: translateX(5%) translateY(9%);
  }
  12% {
    transform: translateX(5%) translateY(9%);
  }
  16% {
    transform: translateX(0%) translateY(0%);
  }
  86% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(5%) translateY(9%);
  }
}

#arrayGroup {
  animation: spinGroup var(--animation-time) ease forwards infinite;
  transform-origin: center;
}

@keyframes spinGroup {
  0%,
  20% {
    transform: rotate(0deg);
  }

  30% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
