* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

body .coming-soon {
  width: 100vw;
  margin-top: -12vh;
}

body .coming-soon .img {
  width: 100vw;
}

body .coming-soon .coming-soon-dot {
  width: 100%;
  height: 100vh;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 11vw;
  margin-top: -1vh;
}

body .coming-soon .coming-soon-dot i {
  display: block;
  width: 2vw;
  height: 2vw;
  margin-right: 2vw;
  border-radius: 9999px;
  background-color: #fff;
  opacity: 0.3;
  animation: blink 1.4s infinite;
}

body .coming-soon .coming-soon-dot i:nth-child(1) {
  animation-delay: 0s;
}

body .coming-soon .coming-soon-dot i:nth-child(2) {
  animation-delay: 0.2s;
}

body .coming-soon .coming-soon-dot i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: 0.3;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

body #box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
