<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

img,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f5f5f5;
}

p {
  font-family: Georgia, serif;
}

h1 {
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-weight: 400;
  font-family: Georgia, serif;
  margin: 40px;
}

main {
  width: 1280px;
  margin: 60px auto;
}

.intro {
  font-size: 20px;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro img {
  margin: auto;
  max-width: 100%;
}

.intro p {
  margin: 40px auto;
}

.scrolly {
  position: relative;
  display: flex;
  gap: 20px;
}

.scrolly &gt; article {
  width: 240px;
}

.scrolly &gt; figure {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  display: grid;
}

.scrolly &gt; figure &gt; * {
  grid-area: 1 / 1;
}

.scrolly &gt; figure &gt; .chart-container {
  height: 640px;
  align-self: center;
  position: relative;
}

.scrolly .step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scrolly .step &gt; * + * {
  margin-top: 1em;
}

.scroll-button-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.scroll-button {
  color: rgba(22, 22, 22, 0.5);
  font-size: 18px;
  line-height: 40px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  user-select: none;
  align-items: center;
  border: none;
  background: none;
  transition: color 0.15s ease-in-out;
}

.scroll-button &gt; svg {
  margin-right: 0.5em;
}

.scroll-button:hover {
  color: #222;
}

.legend-container {
  margin-left: auto;
  z-index: 1;
  padding: 10px 0;
  font-size: 16px;
  align-self: flex-start;
}

.legend-container .legend-title {
  font-weight: bold;
}

.legend-container .legend-item {
  display: flex;
  align-items: center;
}

.legend-container .legend-item__swatch {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  border-radius: 50%;
  background-color: var(--color);
}

.legend-container .legend-item:hover {
  text-decoration: dotted underline var(--color) 4px;
  text-underline-offset: 4px;
  cursor: default;
}

.swatch {
  display: inline-block;
}

.swatch::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.125em;
  border-radius: 50%;
  background-color: var(--color);
  position: relative;
  top: 0.15em;
}

.chart text {
  font-family: inherit;
  font-size: 14px;
  fill: currentColor;
}

.chart .axis .tick line {
  color: rgba(22, 22, 22, 0.25);
}

.chart .bubble {
  transition: stroke 0.25s ease-in-out, fill 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
}

.chart .bubble:hover {
  stroke: currentColor;
  stroke-width: 2px;
}

.chart .bubble.is-muted {
  opacity: 0.15;
}

.vis-tooltip {
  position: fixed;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #ddd;
  color: currentColor;
  pointer-events: none;
  max-width: 400px;
  z-index: 1;
}

.vis-tooltip[data-position="top"] {
  transform: translate(-50%, calc(-100% - 10px));
}

.vis-tooltip[data-position="bottom"] {
  transform: translate(-50%, 10px);
}

.vis-tooltip &gt; * + * {
  margin-top: 0.25rem;
}

.vis-tooltip::before,
.vis-tooltip::after {
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.vis-tooltip::before {
  border-color: rgba(102, 102, 102, 0);
  border-width: 8px;
  margin-left: -8px;
}

.vis-tooltip::after {
  border-color: rgba(255, 255, 255, 0);
  border-width: 7px;
  margin-left: -7px;
}

.vis-tooltip[data-position="top"]::before,
.vis-tooltip[data-position="top"]::after {
  top: 100%;
}

.vis-tooltip[data-position="top"]::before {
  border-top-color: #ddd;
}

.vis-tooltip[data-position="top"]::after {
  border-top-color: #fff;
}

.vis-tooltip[data-position="bottom"]::before,
.vis-tooltip[data-position="bottom"]::after {
  bottom: 100%;
}

.vis-tooltip[data-position="bottom"]::before {
  border-bottom-color: #ddd;
}

.vis-tooltip[data-position="bottom"]::after {
  border-bottom-color: #fff;
}

.book-tip {
  display: flex;
  align-items: flex-start;
  color: #222;
}

.book-tip .book-cover {
  width: 120px;
  object-fit: contain;
  margin-right: 24px;
}

.book-tip .book-detail &gt; * + * {
  margin-top: 4px;
}

.book-tip .book-title {
  font-size: 16px;
  font-weight: bold;
}

.fade {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.fade.is-visible {
  opacity: 1;
  visibility: visible;
}
</pre></body></html>