JSFiddle - React, Tailwind, and code Playground

HTML

<body style='background-color:yellow;position:relative'>
    <div>Hello. This is a DIV element.</div>
</body>

CSS

* {font-size:20px}
div
{
   width:400px;
   height:400px;
   background-color:lightgreen;
   transform:scale(0.7,0.7);
   -moz-transform:scale(0.7,0.7);
   transform-origin:0% 0%;
   -moz-transform-origin:0% 0%;
    border:1px solid black;
    padding:1px;
   
    

  
}