window.addEventListener('blur', window.focus());
async function startTimer(start=14.6){
let timer = document.getElementById('timer')
while (start > 0){
timer.textContent = (start.toFixed(2),timer)
await slp(9)
start -= 0.01
}
}