Hi. It's me! This is my website. You can change it. Just edit the code at the bottom.
Want to talk to me? My email is
admin@(this site)
html, body { color: white; background: darkslategray; padding: 0; white-space: pre-wrap; font-family: monospace; } html { width: 100%; height: 100%; } main { padding-left: 20px; font-size: 1.5em; } .cursor-trail { position: fixed; pointer-events: none; font-size: 20px; animation: trail-fade 1s linear; } @keyframes trail-fade { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.0); } }
/* { const trail = document.createElement('span'); trail.classList.add('cursor-trail'); trail.style.left = `${e.clientX-15}px`; trail.style.top = `${e.clientY-15}px`; trail.innerHTML = '✨'; document.body.appendChild(trail); setTimeout(() => { trail.remove(); }, 100); }); document.body.parentElement.style.cursor = 'crosshair';