/* Flashlight Overlay */
:root {
  cursor: none;
  --cursorX: 50vw;
  --cursorY: 50vh;
}
:root:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(
    circle 10vmax at var(--cursorX) var(--cursorY),
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.5) 80%,
    rgba(0,0,0,.98) 100%
  )
}

* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}
html {
  line-height: 1.4;
  font-weight: 400;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
}
body {
  background:black;
  margin: 0;
  font-family: sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  color: white;
  padding: 1em;
  background: black;
  text-align: center;
}
header h1 {
  margin: 0;
  background:white;
  color:white;
  display: inline-block;
}
header nav {
  display: block;
  overflow: hidden;
}

a {
  outline: none;
  text-decoration: none;
}
footer {
  color: white;
  padding: 2em;
  text-align: center;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em 0;
  letter-spacing: -.02em;
}
h2 {
  font-size: 20pt;
  font-weight: 400;
  color: white;
}
.anon{
  background:white;
  color:white;
}
.artist-link{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.0;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 0;
}
p {
  margin: 0;
}
p + p {
  margin-top: .75em;
}
div {
  padding: 1.5em;
  background: white;
}
div h3 {
  color: lightskyblue;
}
div p {
  color: lightskyblue;
}
main {
  background: aliceblue;
  padding-bottom: 1.5em;
  flex: 1 0 75%;
}
main section,
main aside {
  padding: 1.5em;
  padding-bottom: 0;
}
main section {
  width: 100%;
}
main article {
  padding: 1.5em;
  background: black;
  color:white;
  border-radius: 3px;
  position: relative;
}
main article p {
  color: white;
  line-height: 1.5;
}
.capsule {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid lightskyblue;
}
.capsule  + .capsule {
  border-top: none;
}
.capsule:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.capsule:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (min-width: 800px) {
  header,
  main {
    overflow: hidden;
  }
  article{
    width:33%;
  }
}
footer a{
  color:white;
}