ive this CSS class to the targeted <div>:
.centered {
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: red; / Not necessary just to see the result clearly /
}
<div class="centered">This text is centered horizontally and vertically</div>