document.getElementById("demo30").style.color = "blue";
document.getElementById("demo30").style.fontSize = "100px";
function myFunction() {
document.getElementById("demo30").innerHTML =
Math.floor(Math.random() * 99)+1;
setTimeout(myFunction, 30000);
}
myFunction();