window.addEventListener('resize', function() { var width = window.innerWidth; if (width < 600) { document.body.style.fontSize = '14px'; } else if (width >= 600 && width < 1200) { document.body.style.fontSize = '16px'; } else { document.body.style.fontSize = '18px'; } });