:root {
  --nav-height: 20px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  color: #fff;
  background-color: #000;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

div.wrapper {
  width: 100%;
  height: 100%;
}
div.container {
  position: relative;
  width: 100%;
  height: calc(100% - var(--nav-height));
  overflow: auto;
}

@media (orientation: landscape) {
  div#flip {
    position: absolute;
    width: calc(100vh - var(--nav-height));
    transform: translate(0, calc(100vh - var(--nav-height))) rotate(270deg);
    transform-origin: top left;
  }
}

div#nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-height);
  color: #000;
  background-color: #fff;
}
div#nav svg {
  width: 12px;
  margin-right: 2px;
}
div#nav a {
  color: inherit;
  text-decoration: none;
}
div.title {
  font-weight: 600;
}

div#about {
  margin: 40px;
  padding: 40px 0px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  column-gap: 40px;
  column-width: 320px;
}
div#about p:first-child {
  margin-top: 0;
}
div#about p:last-child {
  margin-bottom: 0;
}
div#about svg {
  width: 12px;
  margin-right: 2px;
}
div#about a {
  color: #fff;
}

div#meta {
  margin: 40px;
}
#grailers {
  width: 76px;
}
