*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-width: 100%;
}

html {
  box-sizing: border-box;
  font-size: 100px;
}

:root {
  --textColor: #111;
  --linkColor: rebeccapurple;
  --backgroundColor: #fff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --textColor: #fff;
    --linkColor: orchid;
    --backgroundColor: #111;
  }
}

body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.1;
  color: var(--textColor);
  background-color: var(--backgroundColor);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1ex;
}

@media screen and (max-width: 700px) {
  html {
    font-size: 70px;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 60px;
  }
}

a {
  color: var(--linkColor);
  will-change: font-weight;
  transition: font-weight 100ms linear;
}

a:hover {
  font-weight: 700;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.8em;
}

.disclaimer {
  font-size: 0.8em;
  color: silver;
}

.poster {
  width: 7em;
  min-width: min-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

ul li::before {
  content: "*";
  display: inline-block;
  width: 1ex;
  margin-left: -1ex;
}

@media screen and (max-width: 400px) {
  li {
    list-style: none;
  }
}
