.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #fff; /* White background to match default colors */
}

.loading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
  height: 80px;
  position: relative;
}

.bar {
  width: 8px;
  height: 8px;
  background-color: #000; /* Default black color */
  border-radius: 50%;
  position: absolute;
}

.bar1 {
  top: 0;
  left: 50%;
  animation: bounce 1s infinite ease-in-out;
}
.bar2 {
  top: 14%;
  left: 86%;
  animation: bounce 1s infinite ease-in-out 0.1s;
}
.bar3 {
  top: 50%;
  right: 0;
  animation: bounce 1s infinite ease-in-out 0.2s;
}
.bar4 {
  bottom: 14%;
  right: 14%;
  animation: bounce 1s infinite ease-in-out 0.3s;
}
.bar5 {
  bottom: 0;
  left: 50%;
  animation: bounce 1s infinite ease-in-out 0.4s;
}
.bar6 {
  bottom: 14%;
  left: 14%;
  animation: bounce 1s infinite ease-in-out 0.5s;
}
.bar7 {
  top: 50%;
  left: 0;
  animation: bounce 1s infinite ease-in-out 0.6s;
}
.bar8 {
  top: 14%;
  left: 14%;
  animation: bounce 1s infinite ease-in-out 0.7s;
}

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