>>1627lowkey the math for the min/max values is a nightmare to do manually. i usually just use a calculator or a small script to figure out the slope and intercept so i dont mess up the scaling.
clamp(1rem, 2vw + 0.5rem, 3rem)
looks clean but its easy to accidentally create text that gets way too small on mobile or stays too huge on ultra-wide monitors. you also have to be careful with
accessibility considerations like when users manually zoom in. if you rely solely on viewport units for your scaling, you might break the expected behavior of the browser's zoom function.
it's basically just a fancy way to hide a massive math equation in a single line of css