body {
  background-color: #4CAF50;
  color: white;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 680px;
  margin: 60px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: block;
  max-width: 100%;
  width: 280px;
  height: auto;
  margin: 0 auto 40px auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

h1,
h2,
h3 {
  color: white;
  margin-bottom: 0.8em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bio {
  margin: 0 auto 3em auto;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  font-size: 1.25rem;
  text-align: center;
  /* Keeping center for better balance with the logo */
  font-weight: 400;
  line-height: 1.7;
}

.bio strong {
  font-weight: 700;
  color: #fff;
}

/* Glassmorphism List Styles */
.recent-posts {
  width: 100%;
  max-width: 500px;
  text-align: center;
}


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

li {
  margin-bottom: 12px;
}

/* The Links (Cards) */
li a {
  display: block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

li a:hover {
  background: white;
  color: #4CAF50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: white;
}

/* View All Link */
.view-all {
  display: inline-block;
  margin-top: 1em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s;
}

.view-all:hover {
  color: white;
  border-bottom-color: white;
}

hr {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 3em 0;
  border-radius: 2px;
}

nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

.nav-link {
  background-color: white;
  color: #4CAF50;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: #f0f0f0;
}

/* --- Post: make markdown readable --- */

.post {
  max-width: 70ch;
  margin: 32px auto 64px;

}

.post p {
  margin: 0 0 1em;
  line-height: 1.75;
}

/* Headings need air */
.post h2,
.post h3 {
  margin: 1.4em 0 0.5em;
}

/* Lists need bullets again */
.post ul {
  list-style: disc;
  padding-left: 1.25em;
  margin: 0 0 .25em;
}

.post li {
  margin-bottom: .25em
}

.back-link {
  display: inline-block;
  margin: 24px auto 12px;
  color: white;
  text-decoration: none;
  opacity: 0.85;
}

.back-link:hover {
  opacity: 1;
}