About Centering a Div in 2023

Not sure how to center a <div> horizontally and vertically? Here is how:

The CSS:

1
2
3
4
5
body {
    height: 100vh;    
    display: grid;
    place-items: center;
}

The HTML:

1
2
3
4
5
6
<body>
    <div>
        The site is down for maintenance.<br />
        Please check back soon!
    </div>
</body>

Web Design Development HTML5 CSS3