#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loading-screen img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

#loading-text {
  font-family: sans-serif;
  font-size: 24px;
  color: #333;
}

#loading-text span {
  animation: bounce 1.4s infinite ease-in-out both;
}

#loading-text .dot1 {
  animation-delay: -0.32s;
}

#loading-text .dot2 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
