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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'JetBrains Mono', monospace;
  background-color: #F5F0E8;
  color: #2C2C2C;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25vh;
  padding-bottom: 2rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22vw;
  height: 28vw;
  max-width: 18rem;
  max-height: 22rem;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  color: #1a1a1a;
  cursor: default;
  transition: color 0.1s ease;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: 0;
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
  background-color: #F5F0E8;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 300;
  color: #aaa;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2C2C2C;
}

.section {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-inner {
  max-width: 36rem;
  width: 100%;
  padding: 2rem;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: #888;
  line-height: 2;
}
