#content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 0;
  padding-bottom: 5em;
}

article {
  width: 80%;
  max-width: 1000px;
}

#blog-posts {
  width: 80%;
  max-width: 1000px;
}

#blog-posts>div {
  background-color: var(--darkerdark);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid var(--accent);
  margin: 2em;
}

#blog-posts a:hover {
  color: var(--altlight);
}

.title-bar {
  display: flex;
  justify-content: space-between;
}

.date {
  font-size: small;
}