/* Styles for the preloader */
.preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Styles for the logo (adjust these styles according to your logo size and preferences) */
.preloader img {
  width: 150px; /* Set width of your logo */
  /* Add any other necessary styles for your logo */
  animation: spin 2s linear infinite; /* Adjust the animation duration as needed */
}

/* Keyframes for the spinning animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
