How do I centralize the circled text?
Use display: flex
together with justify-content:
center in a parent element.
So it will display the result you expect, see the example I left below.
I hope I have helped.
#id-text{
display: flex;
justify-content: center;
}
<div id="id-text">
<h1>GroupTCC</h1>
</div>