I did a VF page, to show a message. how can I resize it to fit full component? thank you!

this is the code I have.
I did a VF page, to show a message. how can I resize it to fit full component? thank you!

this is the code I have.
Use this code, if you mean if you want to apply the style to the whole page:
<apex:page >
<body style="background:red;height:100%;width:100%">
<div >
<b> Test</b>
</div>
</body>
</apex:page>