const startBtn = document.getElementById('btn')
const btnsDiv = document.querySelector('.buttons')
startBtn.addEventListener('click', () => {
let stopBtn = document.createElement('button')
stopBtn.textContent = 'stop'
stopBtn.classList.add('btn')
btnsDiv.appendChild(stopBtn)
})