* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #000 url("stars.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .20);
  pointer-events: none;
}

.text-hit-area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: visible;
}

.text-hit-area path {
  fill: transparent;
  stroke: transparent;
  pointer-events: all;
}

.text-hit-area a:focus-visible path {
  stroke: rgba(255, 255, 255, .9);
  stroke-width: 3;
}

.blank-page {
  min-height: 100svh;
  background: #000;
}
