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

.container {
  max-width: 750px;
  padding: 8rem 5rem;      /* 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: 14px;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}

.footer-nav {
  text-align: center;
  margin-top: 20px;     /* less space above */
  padding: 11px 4;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;      /* same as body text */
  color: #333;
  line-height: 1.2;     /* tighter line spacing */
  text-align: center;   /* override justify from body text */
}

.footer-nav a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #666;
}


