#dots-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background-color: var(--bg-2);
  z-index: 9999;
}
#dots-container::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("/images/bg.png");
  background-size: cover;
  position: fixed;
}

.dot {
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background-color: #999999;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) {
  animation-delay: -0.3s;
}

.dot:nth-child(2) {
  animation-delay: -0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.4);
    background-color: rgba(232, 191, 150, 0.6470588235);
    box-shadow: 0 0 0 0 rgba(232, 191, 150, 0.2588235294);
  }
  50% {
    transform: scale(1);
    background-color: #E8BF96;
    box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
  }
  100% {
    transform: scale(0.4);
    background-color: rgba(232, 191, 150, 0.6470588235);
    box-shadow: 0 0 0 0 rgba(232, 191, 150, 0.2588235294);
  }
}