<div class="layout">
  <div class="popup">
    <p>Hello</p>
    <p>World</p>
  </div>
</div>
.layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.popup {
  background: green;
  width: 100px;
  height: 100px;
 }

body {
  margin: 0;
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.