#loader{
  width:100%;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.circle-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: absolute;
  border: 3.5px solid transparent;
  border-radius: 50%;
  animation: rotate 3s infinite ease-in-out;
}

.circle-1 {
  width: 250px;
  height: 250px;
  border-top-color: #ff881b;
  border-right-color: #ff881b;
  animation-delay: -0.15s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  border-top-color: #9d4cd4;
  border-right-color: #9d4cd4;
  animation-delay: -0.3s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  border-top-color: #ff881b;
  border-right-color: #ff881b;
  animation-delay: -0.45s;
}

.circle-4 {
  width: 100px;
  height: 100px;
  border-top-color: #53c4f1;
  border-right-color: #53c4f1;
  animation-delay: -0.6s;
}

@keyframes rotate {
  50% {
    transform: rotate(360deg);
  }
}

.timer-text {
  position: absolute;
  font-size: 48px;
  color: black;
}