JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/nicodmf/TextMorph/master/Source/jquery.TextMorph.js"></script>
<div id="add_some_color">
    <div class="test" id="circle">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
    </div>
</div>

CSS

#add_some_color {
    width: 400px;
    height: 400px;
    border-radius: 200px;
    margin: 0 60px;
    background-color: rgba(69, 114, 248, 0.7);
    font-size: 40px;
}

JavaScript

$(document).ready(function() {
    var circleSize = 400,
        lineHeight = 15,
        topMargin;

    var circle = new TextMorph(document.getElementById('circle'), {
        width: circleSize,
        height: circleSize,
        lineHeight: lineHeight
    });

    $('.content').css('text-align', 'justify');
    topMargin = 0 - $('#circle').height() / 2;
    $('.content').css('margin-top', topMargin + 'px');

    inc = 0;
    
    make_vertical_center = function() {
        var heightAbove, offset;

        topMargin -= lineHeight / 4; // more precision, but also more increments as this approaches 1

        console.log('INC ' + ++inc + ' topMargin ' + topMargin);
        
        $('.content').css('margin-top', topMargin + 'px');

        heightAbove = Math.abs(($('#circle').height() - $('.content').height()) / 2);
        offset = Math.abs($('#circle').offset().top - $('.content').offset().top);

        console.log('heightAbove ' + heightAbove);
        console.log('offset ' + offset);
        
        if (offset - heightAbove > 0) {
            make_vertical_center();
        }
    };

    make_vertical_center();
});