Estou colocando somente o JS pq eu mantive o HTML e o CSS iguais
const btn = document.querySelector('#calcular')
const h1 = document.querySelector('h1.resultado')
const h2 = document.querySelector('h2')
var count = 0
btn.addEventListener('click', () => {
let msg = 'Fui clicado'
count++
h1.innerText = msg
let qtd = count > 1 ? 'vezes' : 'vez'
h2.innerText = `${count} ${qtd}.`
})