html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background: #fff;       /* or your background image/color */
  color: black;
  overflow: hidden;       /* prevents scrolling */
  display: flex;
  justify-content: center; /* horizontally center */
  align-items: center;     /* vertically center */
}

.container {
  max-width: 750px;
  padding: 4rem 3rem;      /* space inside the block */
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: justify;
  hyphens: auto;
  box-sizing: border-box;
  font-size: 18px;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}
