/* Meh — the aesthetic of not trying, executed with great effort. */

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

html, body, #root {
  height: 100%;
  background: #000000;
  color: #ffffff;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* barely-there vignette so the void has a hint of depth, not decoration */
  background:
    radial-gradient(120% 90% at 50% 40%, #0a0a0a 0%, #000000 70%) fixed;
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.content {
  width: 100%;
  max-width: 640px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 48px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.content.in {
  opacity: 1;
  transform: translateY(0);
}

.title-row {
  line-height: 1;
}

.site-title {
  display: inline-flex;
  align-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: #ffffff;
  cursor: default;
  user-select: none;
  transition: opacity 0.3s ease;
}
.site-title:hover { opacity: 0.65; }

.site-title .react {
  font-size: 16px;
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.site-title .react.show {
  opacity: 0.5;
  transform: translateX(0);
}

.divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  margin: 24px 0 64px;
}

.post {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.5px;
}

footer {
  width: 100%;
  max-width: 640px;
  padding: 24px 0 36px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}
footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
footer a:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
  .content { padding: 72px 0 40px; }
  .divider { margin: 20px 0 48px; }
}