:root{
  --asideW: min(400px, 10%);
  --c1:#eee;
  --text:#000;
}
*,::before,::after{
  box-sizing: border-box;
}
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;
    }
  }
}
.col{width:50%;}

footer{
  text-align: center;
  font-size:.7em;
  line-height: 1.2em;
  margin: 100px 0 40px 0;
}
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:10px;
}

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:var(--c1);
  color: var(--text);
  padding:10px;
  border:0;
  font-size: .7em;
  line-height: 1em;
  text-decoration: none;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
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;
    }
  }
  aside{
    position: static;
    max-height: unset;
    overflow: unset;
    width: 100%;
  }
  .minis{
    display: none;
  }
  figcaption{
    display: block;
  }
  .bandcamp-container iframe{
    width: 100%;
    height: 104vw;
  }
  aside h2{
    display: block;
  }
  .col{
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  body{
    margin-inline: 10px;
  }
  aside{
    display: none;
  }
}
::selection{background-color: yellow; color:var(--c1);}
