body {
  margin: 0;
  padding: 0;
  font-family: Roboto, Arial, sans-serif;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 700px;
  padding: 2rem;
  text-align: left;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  color: black;
  text-decoration: underline;
}

a:hover {
  background-color: black;
  color: white;
}

.blog-entry {
  display: flex;
  align-items: center;
  padding: 6px 0;
  font-family: sans-serif;
  gap: 8px;
}

.blog-entry a {
  color: black;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.blog-entry a:hover {
  background-color: black;
  color: white;
}

.dot-leader {
  flex-grow: 1;
  border-bottom: 1px dotted #aaa;
  height: 0.5em;
  margin: 0 10px;
}

.blog-date {
  color: #666;
  font-size: 0.9em;
  white-space: nowrap;
}