body {
  background-image: url("https://i.ibb.co/0Rf4qpjW/image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.7);
/*  background-color: rgba(255, 138, 5, 0.7);*/
  background-blend-mode: darken;
}
.text-shadow {
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}
/* Circular Progress Bar */
.circle {
  width: 120px;
  height: 120px;
  border: 12px solid rgba(0, 102, 204, 0.3);
  border-top: 12px solid #ff8a05;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Pulsing Text Animation */
.pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}


#notifyme {
  background-color: rgba(255, 138, 5, 0.7);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  border-radius: 8px;
  transition: transform 0.1s ease;
  cursor: pointer;
}

.text-halia {
  color:#ff8a05;
}