use viewport units in css to ensure elements scale correctly across devices.
[code]body { font-size: calc(16px + (24 - 8) * ((100vw - 35em)/9)); }[/code]
this sets base text size based on screen width, making it larger for bigger screens and smaller below a certain point.