body {
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
}

.magic-links-text {
  /* old */
  /* @link https://utopia.fyi/clamp/calculator?a=320,1920,24—54 */
  /* font-size: clamp(1.5rem, 1.125rem + 1.875vw, 3.375rem); */

  letter-spacing: -0.02em;
  line-height: 1.115;

  /* new */
  /* @link https://utopia.fyi/clamp/calculator?a=768,4096,26—80 */
  font-size: clamp(1.625rem, 0.8462rem + 1.6226vw, 5rem);

  @media screen and (min-width: 768px) {
    /* old */
    /* @link https://utopia.fyi/clamp/calculator?a=768,4096,32—96 */
    /* font-size: clamp(2rem, -0.0357rem + 4.2411vw, 6.75rem); */
  }

  @media screen and (max-width: 640px) {
    br {
      display: none;
    }
  }
}

.magic-links-text {
  transition: color 200ms ease-in-out;
}

.magic-links-text a {
  position: relative;
  text-underline-offset: 0.15em;
}

.magic-links-text:has(a:hover) {
  /* color: #eee; */
  /* transition: color 100ms ease; */
}

.magic-links-text a:hover {
  color: #000;
  transition: color 100ms ease;
  z-index: 41;
}
