.landing-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999999999999; /* Ensures the landing page appears above other content */
  
  color: white !important;
}

.loading img {
  width: 130px;
  height: 130px;
  animation: rotate 2s linear infinite; /* Apply the rotation animation */
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.website-content {
  display: block; /* Make sure the content is initially visible */
}
