* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}
.loader {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader > .dot-container {
  position: relative;
}
.loader > .dot-container > .dot {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  display: inline-block;
  animation: slide 1s infinite;
}

.loader > .dot-container > .dot:first-child {
  animation-delay: 0.1s;
  background-color: #32aacc;
}
.loader > .dot-container > .dot:nth-child(2) {
  animation-delay: 0.2s;
  background-color: #64aacc;
}
.loader > .dot-container > .dot:nth-child(3) {
  animation-delay: 0.3s;
  background-color: #96aacc;
}
.loader > .dot-container > .dot:nth-child(4) {
  animation-delay: 0.4s;
  background-color: #c8aacc;
}
.loader > .dot-container > .dot:nth-child(5) {
  animation-delay: 0.5s;
  background-color: #faaacc;
}

.loader > .dot-container > .system-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  font-size: 48px;
  opacity: 0.8;
  font-style: italic;
  font-weight: 500;
  font-family: "Poppins,sans-serif";
}

@keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
