body {
  background-color: #1B4235;
  color: #b564ad;
  margin: 0;
  min-height: 100vh;
  position: relative;

  /* Optional: nicer default text rendering */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Links inherit your pink color and have no underline */
a {
  text-decoration: none;
  color: inherit;
}

/* ====== Header with bottom border + glow ====== */
.header {
  text-align: center;
  position: relative;

  /* Border line */
  border-bottom: 2px solid rgba(181, 100, 173, 0.3);

  /* Space so glow has room + so content below doesn't collide */
  padding: 20px 16px 18px;
  overflow: visible;
}

/* Glow UNDER the border (not above / not sides) */
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  /* Put the glow slightly under the border line */
  bottom: -14px;
  height: 14px;

  /* Smooth fade-down glow */
  background: linear-gradient(
    to bottom,
    rgba(181, 100, 173, 0.7),
    rgba(181, 100, 173, 0)
  );

  pointer-events: none;
}

/* ====== Title text ====== */
.title {
  margin: 0;

  /* Responsive sizing: scales with viewport AND behaves better on zoom */
  font-size: clamp(2rem, 6vw, 5rem);

  font-weight: bold;
  line-height: 1.05;

  /* Helps prevent weird overflow on zoom */
  overflow-wrap: anywhere;
}

/* ====== Main paragraph text ====== */
.text {
  /* Make it a normal text block (not flex) so it wraps naturally */
  display: block;

  width: min(80ch, 80%);      /* readable line-length */
  margin: 100px auto 0;        /* pushes it below header */
  padding: 0 16px;

  /* Responsive text sizing */
  font-size: clamp(1rem, 2.2vw, 2rem);
  line-height: 1.5;

  font-family: "Courier New", Courier, monospace;

  /* Prevent overflow on zoom / long words */
  overflow-wrap: anywhere;
}

/* ====== "Learn more" bottom-right link ====== */
.follow {
  position: absolute;
  right: 16px;
  bottom: 16px;

  /* Responsive sizing so it doesn't explode on zoom */
  font-size: clamp(1.4rem, 4vw, 3.5rem);

  font-family: "Courier New", Courier, monospace;

  /* Nice glow */
  text-shadow: 0 0 12px rgba(181, 100, 173, 0.8);
}
