body {
  background: rgb(255, 254, 251);
}
body
      /* styles.css */
      .loader-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24%;
}

.loader {
  border: 6px solid #f3f3f3; /* Light grey background */
  border-top: 4px solid blue; /* Blue progress arc */
  border-radius: 50%;
  border-left: 4px solid blue; /* Blue progress arc */
  width: 333px;
  height: 333px;
  position: absolute;
  animation: spin 4s linear infinite;
}
.loader .text {
  position: absolute;
  font-size: 24px;
  color: #333;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  body
      /* styles.css */
      .loader-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64%;
  }
}
.loaders {
  border-radius: 50%;
  width: 20px;
  position: absolute;
  left: 83%;
  top: 12%;
  height: 20px;
  background: #fff;
}
.loaderse {
  border-radius: 50%;
  width: 10px;
  left: 99%;
  margin-left: 20%;
  margin-top: 20%;
  top: 17%;
  z-index: 1;
  height: 10px;
  background: blue;
}
.loader img {
  background: #f3f3f3;
  border-radius: 30px;
  display: block;
  box-shadow: 30px 0px 40px rgba(156, 150, 150, 0.4),
    -30px 0px 40px rgba(145, 138, 138, 0.4);
  padding: 40px;
}
