How to center all text body in single.php at once?

There is probably some CSS you can add via Additional CSS (in Theme CUstomization) that you could use. Use the Inspector tool of your browser (F12) to see the CSS ‘class’ element used in the content. If the class is called ‘the_content’, then add this to your Additional CSS:

.the_content{text-align:center !important;}

You might need this, if the content is inside ‘p’ tags:

.the_content p {text-align:center !important;}

Adjust it for what you like (you may not need the !important). In the Inspector, you can add CSS stuff to that element to try things out. There are googles/bings/ducks on how to use the Inspector.