body {
  margin: 0px;
  height: auto;
}
.initial-preloader {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #F5F4F4;
}

.preloader {
  width: 120px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.preloader span {
  width: 100%;
  height: 100%;
  background-color: rgb(94 96 100 / 10%);
  animation: keyframes-blink 0.9s alternate infinite linear;
}

.preloader span:nth-child(1) {
  animation-delay: 0ms;
}

.preloader span:nth-child(2) {
  animation-delay: 200ms;
}

.preloader span:nth-child(3) {
  animation-delay: 300ms;
}

.preloader span:nth-child(4) {
  animation-delay: 400ms;
}

.preloader span:nth-child(5) {
  animation-delay: 500ms;
}

.preloader span:nth-child(6) {
  animation-delay: 600ms;
}

@keyframes keyframes-blink {
  0% {
    opacity: 0.3;
    transform: scale(0.5) rotate(5deg);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}
