https://www.youtube.com/watch?v=zYvVCW41uV0

Note: This update to Wizardry allows users to increase their browser font size preference but does not allow them to zoom in to increase the font size.

Place in before </body> tag Code Section in Project Settings

<noscript>
<style>@media only screen and (min-width: 992px) {body {font-size: 1rem;}}</style>
</noscript>

<script>
function setFontSize() {
 let maxWidth = 1560;
 let windowWidth = $(window).width();
 if (windowWidth >= maxWidth || windowWidth < 992) {
 	$('body').removeAttr("style");
 } else {
  let fontSize = (windowWidth / 100) / 16;
  $('body').css('font-size', fontSize + "rem");
 }
}
setFontSize();
window.addEventListener("resize", function() {
	setFontSize();
});
</script>