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

body {
  font-family: sans-serif;
  color: #222;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.6;
}

nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

nav a {
  text-decoration: none;
  color: #0070f3;
}

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

main {
  margin-bottom: 4rem;
}

h1 {
  margin-bottom: 1rem;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  margin-bottom: 0.25rem;
}

.date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* Home page intro */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.intro img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 2%;
  flex-shrink: 0;
}

.intro-text {
  max-width: 500px;
}

.intro-text p {
  margin-bottom: 0.75rem;
}
