function growFirstTopic() { let topicsContainer = document.getElementById('topics-container'); let topics = topicsContainer.children; if (topics.length % 2 === 1) { topics[0].classList.add('first-topic-container'); } }