I\'m having a hard time getting my head around font scaling.
I currently have a website with a body font-size of 100%. 100% of what though? This seems t
font-size
100% is relative to the base font size, which, if you haven't set it, would be the browser's user-agent default.
To get the effect you're after, I would use a piece of JavaScript code to adjust the base font size relative to the window dimensions.