/* Ultra minimal CSS - Inspired by minimal personal sites */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.5;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  color: #333;
  background-color: #fff;
}

h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.5;
}

h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

p {
  margin-bottom: 8px;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 8px;
  padding-left: 20px;
  text-indent: -20px;
}

li:before {
  content: "◦ ";
  color: #666;
  margin-right: 8px;
}

.year {
  color: #666;
  margin-right: 5px;
}

footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}