body {
  width: 100%;
  height: 100vh;
  margin:0;
  padding:0;
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

.test-div {
  display: inline-block;
}

@font-face {
  font-family: "poppins";
  src:url('/fonts/poppins-light.ttf');
}

.coming-soon-p {
  color: black;
  font-family: poppins;
  font-size: 25px;
  font-weight: light;
}

@keyframes dots {
  0%, 20%{
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.dots span {
  opacity: 0;
  animation: dots 2s infinite;
}

.dots span:nth-child(1) {
  animation-delay: 0s;
}

.dots span:nth-child(2) {
  animation-delay: 0.5s;
}

.dots span:nth-child(3) {
  animation-delay: 1s;
}