body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #eaf4ff; /* light blue */
  color: #343deb;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.site-header {
  text-align: center;
  margin-bottom: 40px;
}

.site-header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: normal;
  color: #eb3483;
}

.site-url {
  margin-top: 8px;
  font-size: 1rem;
  color: #343deb;
  letter-spacing: 0.5px;
}

.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.post-card {
  background-color: #f7fbff; /* soft blue-white */
  border: 1px solid #bcd3ea;
  padding: 20px;
  box-shadow: 4px 4px 0 #d6e6f5;
  max-width: 700px;
  margin: 0 auto;
}

.post-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #343deb;
}

.username {
  font-style: italic;
}

.date {
  white-space: nowrap;
}

.post-card h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: normal;
  color: #4a4647;
}

.post-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 800px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .site-header h1 {
    font-size: 2.4rem;
  }
}