JSFiddle - React, Tailwind, and code Playground

by Imperative

HTML

<div id="wrap">
    <div class="construction">
        <h1>UNDER CONSTRUCTION</h1>
             <h2>Don't hold your breath!</h2>
    
            <p>jmackey</p>
    </div>
</div>

CSS

html, body {
    width: 100%;
    height 100%;
    margin: 0 auto;
}
body {
    background: #FFFF00;
}

#wrap {
    background: blue; 
    padding: 50px;
    overflow: hidden;
}

.construction {
    background: yellow;
    padding: 50px;
    text-align: center;
}

JavaScript

theheight = ($(document).height() - 200);
$('.construction').css({'height' : theheight});