//Если у вас картинка - отдельный блок, и текст - отдельный блок, то дедовским способом
//Стили для блока с текстом:
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
//Если картинка - фон (background), то всему блоку:
display: flex;
justify-content: center;
align-items: center;
.parent { text-align: center }
.child { display: inline-block }
.parent { text-align: center }