JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
<div class="dialog">
    <h1>Some thing</h1>
    <p>Some more</p>
</div>
</div>

CSS

.dialog {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    
    width: 100%;
    max-width: 200px;
    
    background-color: blue;
}

.parent {
    height: 400px !important;
    border: 1px solid red;
    width: 300px;
}