body {
  display: flex;
  flex-direction: column;
  background-color: black;
  color: #eee;
  margin: 1em;
  font-family: sans-serif;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

nav img {
  height: 2em;
}

nav .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .site {
  display: flex;
  flex-wrap: wrap;
  font-size: larger
}

nav .webring {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

nav .webring .ring {
  font-weight: bold;
}

nav .webring div {
  display: flex;
  margin: 0 1em 0 0;
  align-items: center;
}

nav a {
  margin: 0 0.5em;
}

nav .current {
  color: #eee;
  font-weight: bold;
}

a {
  color: #888;
  transition: 0.5s ease;
  text-decoration: none;
}

a:hover {
  color: white;
}

td {
  padding-right: 1em;
  font-size: larger;
}

img,
video {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  margin: 0.25em auto;
}

audio {
  width: 12.5em;
  height: 2.5em;
}

audio::-webkit-media-controls-panel {
  background-color: #aaa;
}

iframe {
  width: 100%;
  height: 90vh;
  border: none;
}

footer {
  margin-top: 3em
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin: 1em;
}

.cover {
  max-height: min(50vh, 90vw);
  max-width: min(50vh, 90vw);
  margin-left: 0;
  display: block;
  padding: 1em 0;
}