No Reconozido como el OP.
<div class="center">
<div class="item">
Hola mundo
</div>
</div>html,
body {
background: orange;
height: 100%;
}
.center {
display:grid;
place-items:center;
height: 100%;
}
.item {
background:red;
padding:2rem;
}