Envision Equality
(function() { const phrases = [ "Envision Equality", "Break Through
Bad Faith", "Transcend Tribalism", "Reframe Revolution", "Subvert Shame" ]; let index = 0; // settings const intervalTime = 3000; // base interval (3s) const fadeTime = 500; // fade time (0.5s) let interval; const container = document.getElementById("rotator-container"); const rotator = document.getElementById("rotator"); // container styling (expands clickable area) container.style.width = "100%"; // full width container.style.height = "100px"; // taller clickable zone (adjust as needed) container.style.display = "flex"; container.style.alignItems = "center"; container.style.justifyContent = "center"; container.style.cursor = "pointer"; // text styling rotator.style.fontFamily = "'Silkscreen', sans-serif"; rotator.style.fontSize = "1.5em"; rotator.style.fontWeight = "bold"; rotator.style.color = "white"; rotator.style.transition = `opacity ${fadeTime / 1000}s ease`; function showPhrase(newIndex) { rotator.style.opacity = 0; setTimeout(() => { index = (newIndex + phrases.length) % phrases.length; rotator.innerHTML = phrases[index]; rotator.style.opacity = 1; }, fadeTime); } function startInterval(time = intervalTime) { clearInterval(interval); interval = setInterval(() => { showPhrase(index + 1); }, time); } // start auto-rotation startInterval(); // click controls container.addEventListener("click", e => { const rect = container.getBoundingClientRect(); const clickX = e.clientX - rect.left; if (clickX < rect.width / 2) { showPhrase(index - 1); // left side → previous } else { showPhrase(index + 1); // right side → next } // after a click, double the interval once startInterval(intervalTime * 2); }); })();

What isn't unnatural?

'Natural' is just about the vaguest word in the dictionary.
It's often implies 'good' or 'the way things are meant to be'.
This reinforces binary thinking by establishing a false contrast with 'unnatural'.
Unnatural flips the narrative to provoke critical thinking.