/* Preloader Style */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure the preloader stays on top */
}

#preloader-gif {
  width: 100px; /* Set the size of the GIF */
  height: auto;
}

/* Content after page load */
#content {
  display: block; /* Display content after the page loads */
}
