<main>
  <p>hello world</p>
  <p>hello world</p>
  <p>hello world</p>
</main>
body, html {
  height: 100vh;
  padding: 0;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #a0a0a0;
  place-items: center;
  justify-content: center;
}

p {
  width: fit-content;
  border: 1px solid purple;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.