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

html {
  background: #050505;
}

body {
  height: 200vh;
  background: #050505;
  overflow-x: hidden;
  cursor: crosshair;
}

#eye {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 0;
}

.github-cta {
  position: absolute;
  top: 100vh;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
}

.github-cta a {
  color: #ff8cdc;
  font: 600 clamp(1.1rem, 2.5vw, 1.75rem) "Cascadia Code", "Fira Code", Consolas, monospace;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-underline-offset: 0.3em;
  pointer-events: auto;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.github-cta a:hover,
.github-cta a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.github-cta a:focus-visible {
  outline: 2px solid #ff8cdc;
  outline-offset: 0.45em;
}
