* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fafafa;
  color: #333;
}

header {
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

header h1 {
  margin-bottom: 10px;
}

nav a {
  color: #0066cc;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Post list on index page */
.post-list {
  list-style: none;
}

.post-list li {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.post-list a {
  font-size: 1.3em;
  color: #333;
  text-decoration: none;
}

.post-list a:hover {
  color: #0066cc;
}

.post-list .date {
  display: block;
  margin-top: 5px;
  color: #666;
  font-style: italic;
}

/* Individual post pages */
article h2 {
  margin-bottom: 5px;
}

article .date {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

article p {
  margin-bottom: 1em;
}

blockquote {
  border-left: 3px solid #ccc;
  margin: 1.5em 0;
  padding-left: 1em;
  font-style: italic;
  color: #555;
}

footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  color: #666;
  font-size: 0.9em;
}
