* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-drag: none;
  -webkit-user-select: text;
  user-select: text;
}

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(10rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease; /* Add transition for opacity */
  z-index: 9999;
}

/* Hide the preloader by setting opacity to 0 */
.preloader.hidden {
  opacity: 0;
  pointer-events: none; /* Prevent interaction while hidden */
}

.loading-text {
  text-align: center;
  font-weight: bold;
  margin: 1rem;
}

.loader {
  border: 8px solid #9ecdff;
  border-top: 8px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

header {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 10px;
  margin-bottom: 20px;
}

section {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
    color: inherit;
    text-align: center;
}