.colophon-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  background-color: white;
  padding: 1em 3em;
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 100;
  font-family: "Liberation Sans", Arial, Helvetica, sans-serif;
  transition: transform 0.5s ease-in-out;
  transform: translateY(0);
  box-sizing: border-box;
  overflow-y: auto;
  border-bottom: 2px solid black;
}

.colophon-screen * {
  pointer-events: none;
  user-select: none;
}

.colophon-screen p > a {
  pointer-events: all;
}


.colophon-screen.hidden {
  transform: translateY(-100%);
}

.colophon-screen h1 {
  margin-top: 1.5em;
}

.colophon-screen h1:first-child {
  margin-top: 0;
}

.colophon-screen ul {
  list-style-type: none;
  padding-left: 0; /* optional: removes indent */
}

.colophon-screen li {
  margin-bottom: 1em;
}