body {
  background-color: #c0c0c0; /* Classic Windows 95 Grey */
  color: #000;
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
}

/* The Ticker - simplified */
.jiggy-bar {
  width: 100%;
  position: sticky;
  top: 0; /* This is the missing piece */
  z-index: 999; /* Keeps it above your text while scrolling */
  overflow: hidden;
  user-select: none;
  background: #fff;
  border-top: 2px solid #808080;
  border-bottom: 2px solid #808080;
  padding: 4px 0;
}

.jiggy-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.jiggy-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: 18px;
  font-weight: normal; /* Less bold, more old-school */
  padding-right: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Typography */
.container {
  padding: clamp(20px, 5vw, 40px) clamp(16px, 5vw, 20px);
  max-width: 800px;
  margin: 0 auto;
}

.title {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  text-decoration: underline;
  margin-bottom: 10px;
}

.people {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-style: italic;
  font-weight: normal;
  color: #0000ee;
}

h1, h2, h3 {
  line-height: 1.2;
}

p, li {
  font-size: clamp(0.95rem, 3.5vw, 1rem);
  line-height: 1.5;
}

hr {
  border: 0;
  border-top: 1px solid #000;
  margin: 20px 0;
}
