// Scrolling the page to hide the URL bar
window.onload = function() {
  setTimeout(function(){window.scrollTo(0, 1);}, 100);
}