#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Background color of the loader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#thisYear {
    font-weight: 400;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a:focus {
    outline: none !important;
}

.footer-left p {
    font-weight: 400;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid darkgreen; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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