body {
    margin: 0;
    padding: 0;
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

/* Main content styling */
.content {
    padding: 40px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* The dark overlay with spotlight */
.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let mouse events pass through */
    background: radial-gradient(circle 100px at var(--x, 50%) var(--y, 50%), rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    transition: background 0.05s;
}

li{
    text-decoration: none;
    display: inline-block;
    
}



