@font-face {
  font-family: 'Terminal';
  font-weight: normal;
  src: url('type/terminal-grotesque-webfont.woff') format('woff'),
        url('type/terminal-grotesque-webfont.woff2') format('woff2');
}
* { box-sizing: border-box }
html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-family: 'Terminal', sans-serif;
  font-size: 1.5rem;
  background-color: #010101;
  color: #f00;
  overflow-x: hidden;
}
header {
  width: 100%;
  background: url('/oldweb/stream.png') center / cover;
  border-bottom: 2px solid #f00;
}
nav.topbar {
  background: linear-gradient(#000, #0000);
  margin-bottom: 16em;
}
nav.topbar ul {
  width: 100%;
  list-style: none;
  display: flex;
  margin: 0 auto -1em;
}

nav.topbar li {
  width: 100%;
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
}

nav.topbar li a {
  color: #f00;
}

nav.topbar li a:not(.logo) {
  padding: .9em 1em 1.1em;
  position: relative;
  display: inline-block;
  transform: rotate(-9deg);
  transition: .2s transform;
}

nav.topbar li a:not(.logo):hover {
  transform: rotate(-9deg) scale(1.1);
}

nav.topbar .logo {
  text-decoration: none;
}
#logo {
  width: 10rem;
  margin-top: -1em;
}

.title {
  text-align: center;
}
h1,
h2 {
  font-weight: normal;
}
h1 {
  font-size: 1.5em;
  display: inline-block;
  position: relative;
  padding: 1em 1.4em;
  transform: rotate(-9deg);
  margin: 1em;
}
h1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('/img/burst.svg') center / 100% 100%;
  z-index: -1;
  animation: 1s pulse linear infinite alternate;
}
@keyframes pulse {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(.97)
  }
}
h2 {
  margin: 2em 0 .25em;
}
a {
  color: #fff;
}
a img {
  border: 0;
}
main {
  margin: 0 auto;
  max-width: 70rem;
  padding: 1rem;
}
img {
  max-width: 100%;
}
s {
  color: #411;
}
dd {
  margin-left: 0;
  font-size: .9em;
}
main nav {
  border: 2px solid #f00;
  border-left-width: 0;
  border-right-width: 0;
  padding: 2em 0;
  font-size: .7em;
}
main nav h2 {
  margin-top: 0;
}
main nav ol {
  columns: 3;
  line-height: 1.2;
  color: #311;
}

section.artists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-bottom: 4em;
}

.top {
  display: inline-block;
  position: fixed;
  bottom: 1em;
  right: 1em;
  left: auto;
  background: #000;
  padding: 1em;
  box-shadow: 2px 2px 2px 2px red;
  transform: scale(.9) translateY(10%);
  opacity: 0;
  transition: .3s opacity, .2s transform;
}
.top.--visible {
  opacity: 1;
  transform: scale(.9);
}
.top a {
  color: #f00;
  text-decoration: none;
}
.top a:hover {
  color: #fff;
}

section.artists img {
  width: 100%;
  margin-bottom: 1em;
}
@media (max-width: 800px) {
  section.artists {
    grid-template-columns: 1fr;
  }
  nav.topbar ul {
    flex-direction: column;
    margin: 1em 0 1em 8rem;
  }

  nav.topbar li {
    text-align: left;
    font-size: 1rem;
  }

  nav.topbar li.logo-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }

  #logo {
    width: 8rem;
  }

  nav.topbar li a:not(.logo) {
    transform: none;
    padding: .5em 0em;
  }
  main nav ol { columns: 1 }
}