left bow

Welcome to my strange little digital burrow. Sometimes I forget I'm not a ghost...

Here's where I keep my thoughts, memories, and maybe a little magic.

glowing ball
right bow
/* --- Fortune Teller --- */ .fortune-teller { width: 100%; max-width: 100%; margin: 40px auto; display: flex; flex-direction: column; align-items: center; text-align: center; } .crystal-ball { font-size: 3rem; cursor: pointer; animation: float 3s infinite ease-in-out; color: var(--accent-color); filter: drop-shadow(0 0 15px var(--pink-shadow)); z-index: 1; margin-top: 40px; } .crystal-ball:hover { transform: scale(1.2) rotate(5deg); filter: drop-shadow(0 0 20px rgba(255, 182, 193, 1)); } #fortune-result { margin-top: 15px; font-size: 0.5rem; font-family: "IBM Plex Mono", monospace; color: var(--accent-color); text-shadow: 0 0 10px var(--text-shadow); max-width: 250px; word-wrap: break-word; text-align: center; }