Flexbox
.box {
display: flex;
justify-content: center;
align-items: center;
min-height: 200px;
}
.box p {
margin: 0;
text-align: center;
}
Grid:
.box {
display: grid;
place-items: center;
}
Устаревшие трюки: absolute + translate (−50%, −50%).
Итог
Flex/grid place/align/justify — самый прямой способ center-center.