/* Loading screen styles */
#loadingScreen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dot styles */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
  animation: dance 0.6s infinite alternate;
}

/* Different animation delays for each dot */
#dot1 {
  animation-delay: 0s;
}

#dot2 {
  animation-delay: 0.2s;
}

#dot3 {
  animation-delay: 0.4s;
}

/* Keyframes for the dancing effect */
@keyframes dance {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}