body {
  display: grid;
  place-items: center;
}
#stories {
  border: 2px solid black;
  border-radius: 16px;
  box-shadow: 0px 0px 8px black;
  min-width: 50%;
  backdrop-filter: blur(4px);
  overflow: auto;
  touch-action: auto;
  max-height: 60%;
  padding-bottom: 1em;
  padding-top: 1em;
}
ul {
  list-style: none;
  padding: 1rem;
}
li a {
  text-align: center;
  display: block;
  text-decoration: none;
  background: #963;
  color: white;
  border-radius: 16px;
  padding: 1rem;
  margin: 1rem;
  border: 2px solid black;
  box-shadow: 0 0 8px black;
  text-shadow: 2px 2px black;
}
a:hover {
  background: #C93;
  color: black;
  text-shadow: none;
}
a.disabled {
  background: #630;
  color: gray;
  pointer-events: none;
}
#pages {
  position: absolute;
  right: 0%;
  bottom: 0%;
}
