.dots-container {
  display: block;
  justify-content: center;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #AD4196;
  margin: 0 2px;
  animation: dot-pulse 1.3s ease-in-out infinite;
}

.dot1{
  animation-delay: 0s;
}
.dot2{
  animation-delay: 0.4s;
}
.dot3{
  animation-delay: 0.8s;
}


@keyframes dot-pulse {
  0% {
    transform: scale(1);
    background-color: #AD4196;
  }
  50% {
    transform: scale(1.5);
    background-color: #B280FA;
  }
  100% {
    transform: scale(1);
    background-color: #AD4196;
  }
}

html, body {
  min-height: 100%;
  min-width: 100%;
  top: 0;
  bottom: 0;
  margin: 0px auto;
}

 .center {
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #17222B;
   flex-direction: column;
  }
