I am now able to sift the text to the center using the below in the css sheet.
.attachment .site-content {
text-align: center;
/* center image and text */
}
But this leaves the picture annoyingly to the left.
Alternatively I can use
.attachment p {
text-align:center; /* center image and text */
}
To get both image and text centred, but that leaves an annoying white block to the right of the page.