div {   width: 100%;   height: 200px;   display: flex;   justify-content: center;   align-items: center;   background: blue; }  text {   background: orange; }  <div>    <text>Centered horizontally and vertically</text> </div>

Read more of this post