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

body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

.container {
  max-width: 650px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  margin-bottom: 40px;
}

nav a {
  display: inline-block;
  margin-right: 12px;
  color: blue;
  text-decoration: none;
  font-size: 0.95em;
}

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

.name-link {
          color: black;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
          text-decoration: none;
          font-size: 1.5em; /* Increased font size */
          font-weight: bold; /* Added to ensure the text remains bold */
}

/* Header */
h1 {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
}

h1 a {
  color: #111;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

/* Content */
p {
  margin-bottom: 16px;
}

a {
  color: blue;
}

ul{
  list-style: square;
  padding-left: 2.5em;
}

/* Blog */
.post-list {
  list-style: none;
}

.post-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 16px;
}

.post-list a {
  text-decoration: none;
}

.post-list a:hover {
  text-decoration: underline;
}

.post-date {
  font-size: 0.85em;
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Details/summary collapsible */
details {
  margin-bottom: 16px;
}

details summary {
  cursor: pointer;
  list-style: none;
  font-weight: bold;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::before {
  content: "+ ";
}

details[open] summary::before {
  content: "- ";
}

details p {
  margin-top: 8px;
}
