body {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 0 2px rgba(78, 78, 255, 0.3));
  }

.navbar {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
}


.logo img {
    width: 70px;  /* Adjust the logo size as needed */
    height: auto;  /* Ensures the logo maintains its aspect ratio */
}

/* Navbar list styling */
.navbar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative; /* Needed to position the line behind the buttons */
}

/* Add the white rounded line behind the buttons */
.navbar ul::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px; /* Start just before the first button */
    right: -10px; /* End just after the last button */
    transform: translateY(-50%);
    height: 50px;
    border-radius: 20em; /* Rounded line */
    z-index: -1;
}

/* List item styling */
.navbar li {
    margin-left: 20px;
}

/* Button styling */
.navbar button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: rgba(255, 255, 255, 0); /* Slightly transparent white background */
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Hover effect for buttons */
.navbar button:hover {
    background-color: rgba(255, 255, 255, 1); /* Full white background on hover */
    transform: scale(1.05); /* Slight lift effect */
    color: black;
}

#AffiliationMessage {
    background-color: #021a13; 
    color: #00ffaa;       
    padding: 7px 11px;    
    display: inline-block;   
    border-radius: 4px;       
    font-family: monospace, sans-serif; 
    font-size: 13px;
    /* backdrop-filter: blur(80px);  */
}


#loader {
    display: none;
    width: 50px;
    height: 50px;
    animation: rotate 1.5s ease-in infinite; /* Add rotation animation */
    transform-origin: center; /* Ensure it rotates around its center */
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    50.01% { transform: rotate(180deg); } /* Pause for a brief moment */
    100% { transform: rotate(360deg); }
}

.loader-container {
    display: flex;
    align-items: center; /* Center the SVG */
    justify-content: center; /* Center the SVG */
    height: 100%; /* Full height for proper centering */
}