html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: monospace; 
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  line-height: 1.7;
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.posts {
  list-style: none;
  padding: 0;
  margin-top: 4rem;
}

.post-title {
  display: flex;
  flex-direction: row; 
  align-items: baseline;
  font-weight: bold;
}

#post-heading {
  font-size: 13px; 
}

#post-title-dot {
  margin: 0 1rem;
}

li {
  display: flex;
  justify-content: space-between;
}

blockquote {
  border-left: 3px solid #ccc;
  padding-left: 1rem;
  margin-left: 0;
}



a {
  color: inherit;
}

#dotted {
  border-bottom: 2px dotted;
  display: inline-block;
  flex-grow: 1;
  margin: 0 8px;
  align-self: center;
}