/* Make the page fill the viewport */
html, body {
  height: 100%;
  margin: 0;
}

/* Just a basic font */
body {
  font-family: sans-serif;
}

/* This is the magic: center the content in the middle of the browser */
.center-wrapper {
  min-height: 100vh;           /* full browser height */
  display: flex;
  justify-content: center;     /* vertical center */
  align-items: center;         /* horizontal center */
}

/* Keep the content from stretching too wide */
.page {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* Blog list styling */
.post-link {
  margin: 1rem 0;
}

.post-link a {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.post-link small {
  display: block;
  margin-top: 0.2rem;
  opacity: 0.7;
}