fihtus by ryeones

fihtus by ryeones

Thoughts, musings, and lessons from a creative ambivert figuring it all out in my 20s. Join me as I explore life, creativity, and personal growth.

const quotes = [ '“Dream big and dare to fail.” – Norman Vaughan', '“Do one thing every day that scares you.” – Eleanor Roosevelt', '“Hustle in silence and let your success make the noise.” – Unknown', ]; const quoteElement = document.createElement('div'); quoteElement.innerText = quotes[Math.floor(Math.random() * quotes.length)]; quoteElement.style.position = 'fixed'; quoteElement.style.bottom = '20px'; quoteElement.style.left = '20px'; quoteElement.style.padding = '15px'; quoteElement.style.backgroundColor = '#333'; quoteElement.style.color = '#fff'; quoteElement.style.borderRadius = '8px'; quoteElement.style.zIndex = '1000'; document.body.appendChild(quoteElement);