/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 a {
  color: #007acc;
  text-decoration: none;
  font-size: 2.5rem;
}

header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Main content */
main {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

main p {
  margin-bottom: 1rem;
}

a {
  color: #007acc;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}

/* Posts list (future-ready) */
.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  margin-bottom: 1rem;
}

.post-list a {
  font-weight: bold;
}

nav {
  text-align: center;
  margin-bottom: 3rem;
}

nav a {
  margin: 0 0.5rem;
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #007acc;
}

main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 8px; /* rounded corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

main ul {
  list-style: disc inside;
  padding-left: 0;
  margin-bottom: 1.5rem; /* more space after the list */
}

main ul li {
  margin-left: 1rem; /* indent bullets inward slightly */
  margin-bottom: 0.3rem; /* small space between bullets */
}

