<div class="its-okay-container">
    <span>It's okay to </span><span id="changing-word"></span>
</div>

<style>
.its-okay-container {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #333;
}
</style>

<script>
    const words = ["talk", "not talk", "be angry", "be sad", "be nothing", "seek support"];
    const wordElement = document.getElementById("changing-word");

    let index = 0;

    function changeWord() {
        wordElement.textContent = words[index];
        index = (index + 1) % words.length;
    }

    changeWord();
    setInterval(changeWord, 2000);
</script>

