:root{
  --p: 10px;
  --c1:#eee;
  --c2:#111;
  --text:#000;
}
*,::before,::after{
  box-sizing: border-box;
}
.fr{display: none;}
body{
  font: 22px/1.3em APL333,sans-serif;
  letter-spacing: .08em;
  background: var(--c1);
  background-attachment: fixed;
  color: var(--text);
  margin-inline: calc(var(--asideW) + 60px);
  margin-block: 42px;
  header{
    width:100%;
    display: flex;
    padding:20px 0;
    flex-wrap: wrap;
  }
  header h1{
    font:inherit;
    width:max(50%,20vw);
  }
  header ul, header h1{margin:0;}
  main, &>header{
    margin: 0 auto;
    width: min(1100px, 95%);
  }
  header nav{
    width: 50%;
    ul{
      display: flex;
      column-gap: 7vw;
      flex-wrap: wrap;
      width: 100%;
      align-content: flex-start;
      flex-direction: column;
      height: 140px;
    }
  }
}
main nav{
  display: flex;
  flex-direction: row;
  gap:var(--p);
  button, .button{
  }
}
.btn-box{
  text-align: center;
  margin: 100px 0 40px 0;
  font-size:.7em;
  line-height: 1.2em;
}
footer{
  text-align: center;
  font-size:.7em;
  line-height: 1.2em;
  margin: 100px 0 40px 0;
  opacity: .5;
}
h2{
  font-size: inherit;
  margin: 40px 0 20px 0;
  text-transform:uppercase;
  &:not(:first-of-type){
    margin-top:5em;
  }
}
h3{
  font-size: .8em;
  text-transform:uppercase;
  margin-bottom:0;
}
p, details{margin:0 0 0px 0;}
details{
  border:1px solid var(--text);
  padding:var(--p);
}

ul{padding:0; margin:0;}
ul li{
  list-style: none;
  position:relative;
  padding:0 0 0 1.5em;
  line-height: 1.2em;
  margin-bottom: 15px;
}
ul li:before{
  content:"";
  position: absolute;
  top:.7em;
  left:0;
  height:1px;
  width:.7em;
  border-radius: 2px;
  background:var(--text);
}
li time{
  font-family: monospace;
  font-size: .7em;
  border: 1px solid var(--text);
  padding: 1px 3px;
}
a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid;
}
button, .button{
  background:color-mix(in hsl, var(--c2), white 20%);
  font-family:inherit;
  color: var(--c1);
  padding:var(--p) calc(var(--p) * 1.5);
  border:0;
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  border-radius: var(--p);
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom:2px solid black;
  &:hover{
    background:var(--c2);
  }
  &:active, &.inview{
    position: relative;
    border-bottom:0;
    top:0px;
  }
  &.inview{
    background:var(--c2);
    position: relative;
    &:after{
      content:"";
      width: .5em;
      height:.5em;
      background: var(--c2);
      position: absolute;
      bottom: -.2em;
      left: calc(50% - .5em / 2);
      /*! border-radius: 1em; */
      rotate: -45deg;
    }
  }
}
.button-caption{
  margin-top: 1em;
  opacity: .3;
  width: 14em;
  display: block;
  margin-inline: auto;
}
button:hover, .button:hover{filter: saturate(1.2);}
button:active, .button:active{filter: saturate(0.7);}

@media only screen and (max-width: 1400px) {
  body{
    header h1,header nav{
      width:100%;
      height: auto;
    }
    header nav ul{
      margin-top: 20px;
      font-size: .6em;
      height: 8em;
    }
  }
  figcaption{
    display: block;
  }
  .bandcamp-container iframe{
    width: 100%;
    height: 104vw;
  }
}
@media only screen and (max-width: 500px) {
  body{
    margin-inline: var(--p);
  }
}
::selection{background-color: yellow; color:gray;}
