.main__container {
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  height: 40rem;
}

.heading__coming {
  font-size: 10rem;
  color: var(--color-primary-switch);
  margin-right: 2rem;
}

.loader {
  margin-top: 4rem;
}

.loader div {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: inline-block;
  animation: scaling 2s ease-in-out infinite;
}

.loader div:nth-child(0) {
  animation-delay: 0s;
}
.loader div:nth-child(1) {
  animation-delay: 0.2s;
}
.loader div:nth-child(2) {
  animation-delay: 0.4s;
}
.loader div:nth-child(3) {
  animation-delay: 0.6s;
}
.loader div:nth-child(4) {
  animation-delay: 0.8s;
}
.loader div:nth-child(5) {
  animation-delay: 1s;
}

@keyframes scaling {
  0%,
  100% {
    transform: scale(0.2);
    background-color: white;
  }
  40% {
    transform: scale(1);
    background-color: rgb(255, 123, 123);
  }
  50% {
    transform: scale(1);
    background-color: red;
  }
}

@media only screen and (max-width: 81.25em) {
  .heading__coming {
    font-size: 8rem;
  }
  .loader div {
    height: 1.7rem;
    width: 1.7rem;
  }
}

@media only screen and (max-width: 50em) {
  .container {
    height: 40rem;
  }
  .heading__coming {
    font-size: 7rem;
  }
  .loader div {
    height: 1.5rem;
    width: 1.5rem;
  }
}

@media only screen and (max-width: 40.625em) {
  .container {
    height: 40rem;
  }
  .heading__coming {
    font-size: 5rem;
  }
  .loader div {
    height: 1.4rem;
    width: 1.4rem;
  }
}

@media only screen and (max-width: 31.25em) {
  .container {
    height: 30rem;
    transform: translateY(2rem);
  }
  .heading__coming {
    font-size: 3.5rem;
  }
  .loader {
    margin-top: 1.8rem;
  }
  .loader div {
    height: 1.2rem;
    width: 1.2rem;
  }
}
