/* Keyframes for the preloader animation */
@keyframes load {
    0% {
        opacity: 0.08;
        filter: blur(5px);
        letter-spacing: 3px;
    }
    100% {
        opacity: 1;
        filter: blur(0);
        letter-spacing: 0;
    }
}

/* Style for the preloader */
.preloader {
    position: fixed; /* Ensures it stays in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Black background for the preloader */
    font-family: Helvetica, sans-serif, Arial;
    animation: load 1s infinite alternate;
    text-shadow: 0 0 1px white;
    color: white; /* Text color for visibility */
    z-index: 9999; /* Stays above other content */
}

/* Style for the main content */
#content {
    display: none; /* Initially hidden */
}

/* Body and HTML to fill the viewport */
body, html {
    margin: 0;
    height: 100%; /* Ensures full viewport height */
    background-color: transparent; /* No background color */
    color: white;
}
.circle {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: black; /* Set the color here */
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999; /* so that it stays on top of all other elements */
  }
  