Hey peeps.
So I'm working on my first "real" XNA project, which is nothing more than a simple Tetris game.
I'm drawing some text here and there in the game, but something that puzzles me is the size of the text.
Take this for instance... When the player presses space a small box comes up, containing the text "PAUSED". The size of this box depends on the size of the window. Of course, I'd also like the text to adjust to this aswell...As it is right now it wont matter if the box is 320x240 or 1280x1024...the text size remains the size I set it to in the SpriteFont object, which is 18.

Now, I've tried adjusting the scale parameter when drawing the text, based on the size of the window. But this makes the text very blurred once the box gets just a bit bigger.
How can I adjust the size of my text and still keep a good quality? How do you guys do it?