What would be the best way to increase the size of a font to make it take full width of a screen or rather view width? A good example is the one gumroad are using: https://gumroad.com/ However they seem to have used it as an image rather than normal text, is it possible to do it with just normal text?
in gumroad its not a text its an image
but if you want to control your font size you can use
font-size: clamp(min size , 2vw, max size)
for example font-size: clamp(14px, 2vw, 20px)
you can read more here https://developer.mozilla.org/en-US/docs/Web/CSS/clamp()