/* specifically for the circle on the front page */

#circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;  
    background: black;
    background: radial-gradient(circle at 200px 200px, #ff6701, #361600);
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.7);
    /* margin-top: -40px; */
    visibility: hidden; /* Initially hidden, will be shown by JS */
}