Make it stand out

Introduce your brand

<div class="belief-section animate-on-scroll">
  <h2>God</h2>
  <p>We believe God is the creator of all things. He exists in three persons — the Father, Son, and Holy Spirit. These three are co-equal and one.</p>
  <p class="verses">Genesis 1:26–27, 3:22 • Psalm 90:2 • John 1:12 • Ephesians 1:13–15 • 2 Corinthians 13:14</p>
</div>

<div class="belief-section animate-on-scroll">
  <h2>Jesus</h2>
  <p>We believe Jesus is the Son of God, conceived through the power of the Holy Spirit...</p>
  <p class="verses">Matthew 1:22–23 • Luke 2:1–20 • John 1:1–15 • Acts 1:9–11...</p>
</div>

<!-- Repeat this structure for each belief section -->
<script>
  document.addEventListener("DOMContentLoaded", function () {
    const elements = document.querySelectorAll('.animate-on-scroll');

    const observer = new IntersectionObserver(entries => {
      entries.forEach(entry => {
        if (entry.isIntersecting) {
          entry.target.classList.add('visible');
          observer.unobserve(entry.target);
        }
      });
    }, { threshold: 0.1 });

    elements.forEach(el => observer.observe(el));
  });
</script>