html
{
  box-sizing: border-box;
}
*, *::before, *::after
{
  box-sizing: inherit;
}
body
{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*
{
  -webkit-tap-highlight-color: inherit;
}
html
{
  height: -webkit-fill-available;
}
body
{
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
body
{
  background: black;
  color: white;
  font-family: "DINCondensed-Bold", "HelveticaNeue-CondensedBold", "Arial Narrow", sans-serif;
  font-weight: bold;
  -webkit-text-size-adjust: none;
  text-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.25);
}
h1,
h2,
p
{
  margin: 0;
}
h1,
h2
{
  font-size: 3em;
}
p
{
  font-size: 1.5em;
}
@media (max-width: 480px) {
  h1,
  h2
  {
    font-size: 10vw;
  }
  p
  {
    font-size: 8vw;
  }
}
div.announcement h1
{
  font-size: 16vw;
}
div.announcement p
{
  font-size: 10vw;
}
div.announcement li
{
  font-size: 6vw;
}
h1
{
  text-transform: uppercase;
}
h1 + h2
{
  margin-top: -0.25em;
}
ul,
ol
{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
li
{
  margin: 0;
  padding: 0;
}
a
{
  color: white;
}
a:active
{
  color: lightgrey;
}
div.announcement,
div.live,
video,
div#tracklist,
img.background
{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
audio
{
  position: absolute;
  left: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
  width: 100%;
}
img.background
{
  object-fit: cover;
}
div.announcement
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em 1em;
  background-position: 50% 50%;
  background-size: contain;
  text-align: center;
  box-shadow: inset 0 0 16vw black;
}
video
{
  max-width: 100vw;
  max-height: 100vh;
  object-fit: cover;
}
div#title
{
  position: absolute;
  top: 0;
  left: env(safe-area-inset-left);
  right: env(safe-area-inset-right);
  padding: 3em 1em 1em 1em;
  pointer-events: none;
}
div#title.right
{
  text-align: right;
}
div#title a
{
  pointer-events: auto;
}
header
{
  margin: 0 0 1em 0;
}
header a
{
  display: inline-block;
  text-decoration: none;
}
div#current
{
  position: absolute;
  bottom: 2em;
  left: env(safe-area-inset-left);
  right: env(safe-area-inset-right);
  padding: 1em;
  text-align: center;
}
div#tracklist
{
  display: none;
  padding: 2em 1em;
  overflow: scroll;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(2em);
}
ol
{
  font-size: 1.5em;
}
ol > li
{
  position: relative;
  margin: 0;
  padding: 0 0 0 3em;
  transition: color 0.3s ease-out;
}
ol > li > span:first-child
{
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
ol > li.played:not(.current)
{
  opacity: 0.5;
}
ol > li.current
{
  color: red;
}
a.close
{
  display: block;
  position: fixed;
  z-index: 9;
  right: 0;
  top: 0;
  padding: 1.25em;
  cursor: pointer;
}
a.close div
{
  width: 1em;
  height: 1em;
  padding: 0.25em;
  font-size: 3em;
  background: rgba(0,0,0,0.4);
  border-radius: 1em;
}
a.close svg
{
  display: block;
  width: 100%;
  height: 100%;
  fill: white;
}
a.close:active svg
{
  fill: black;
}
@media (hover: hover) {
  a.close:hover div
  {
    background: white;
  }
  a.close:hover svg
  {
    fill: black;
  }
}
a.close:active div
{
  background: lightgrey;
}