Is there an alternative for @media queries to accomplish font-size inversely proportional to the screen size? (e.g.: opposite effect of 2vw, where the font gets
2vw
You can use relative font-styling. like -
html, body { font-size: 16px; } h1 { font-size: 2.5em; } p { font-size: 1em; }