body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* Add a font family to style the text */
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: block;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  inline-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ... your previous CSS ... */

.loading-text {
  position: relative;
  font-size: 30px;
  /* You can adjust the size as needed */
  letter-spacing: 1px;
  color: white;
  font-weight: 100px;
  padding: 10px;

}

.dots {
  opacity: 0;
  animation: dots 1.5s infinite;
  color: var(--initial-loader-color, #eee);
}

@keyframes dots {

  0%,
  20% {
    opacity: 0.2;
  }

  40% {
    opacity: 0.4;
  }

  60% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}