<script>

function backToTop() {
  const main = document.getElementById("main");
  main.scrollTop = 0;
}

</script>