html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Fredoka, sans-serif;
  background: #294A3A;
  color: #fff;
}

body {
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
}

.wrap {
  width: min(920px, 100%);
}

.hero {
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  max-width: min(420px, 100%);
  height: auto;
}

.fallback-logo {
  display: none;
  font-size: clamp(3rem, 9vw, 5.5rem);
  letter-spacing: 0.04em;
  margin: 0;
}

.fallback-logo span {
  color: #9dff9d;
}

.nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.nav a,
.more {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
 //  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  padding: 1.25rem 1.4rem;
}

.card h2,
.card h3 {
  margin: 0 0 0.75rem;
}

.muted {
  color: #eadff7;
  opacity: 0.9;
}

.log-list {
  display: grid;
  gap: 1rem;
}

.post,
.project {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: inherit;
  text-decoration: none;
}

.post:first-child,
.project:first-child {
  border-top: 0;
  padding-top: 0;
}

.post h3,
.project h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.post p,
.project p {
  margin: 0;
  color: #efe7fb;
}

.project-meta {
  color: #eadff7;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0.9;
}

.project img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.pill,
.hash {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.35rem 0.7rem;
  color: #2b2044;
  text-decoration: none;
  font-weight: 400;
}

.pill {
  border-radius: 999px;
  background: #9dff9d;
}

.hash {
  border-radius: 2px;
  background: #aad7aace;
}

.show-more-row {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}

.show-more-projects {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: #9dff9d;
  color: #2b2044;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.show-more-label {
  color: #eadff7;
  font-weight: 500;
  left: calc(50% + 2rem);
  opacity: 0;
  position: absolute;
  transform: translateX(-0.35rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.show-more-row:hover .show-more-label,
.show-more-row:focus-within .show-more-label {
  opacity: 1;
  transform: translateX(0);
}
