const buttons = document.querySelectorAll(".btn__play");
for(const button of buttons) {
button.addEventListener("click", ({currentTarget})=> {
if(currentTarget.textContent === 'Pause') {
this.textContent = 'Play';
aud.pause();
} else {
currentTarget.textContent = 'Pause';
aud.play();
}
});
}