/*reset*/
*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*color scheme*/
:root{
  --black: #292C2B;
  --grey: #374241;
  --white: #E6E7E8;
  --light-accent: #F99D27;
  --strong-accent: #DE3827;
}


/*font*/
@font-face {
  font-family: 'AirAmericana';
  src: url('fonts/AirAmericana.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Franklin Gothic Heavy';
  src: url('fonts/Franklin Gothic Heavy Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Franklin Gothic Book';
  src: url('fonts/Franklin Gothic Book Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*generals*/
body{
  background-color: var(--grey);
  color: var(--white);
  font-family: 'Franklin Gothic Heavy', 'Arial Black', sans-serif;
}
a, a:visited{
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
ul{
  list-style: none;
}


/*corpus*/
menu, aside{
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
aside{
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
}
aside.on{
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#play, #pause, #next, #time, #playlistToggle, #center, aside a, aside::before, aside::after{
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 4px;
  background-color: var(--black);
}
aside.paused #pause, aside:not(.paused) #play{
  display: none;
}
#play, #pause, #next, #playlistToggle, aside a{
  max-width: 50px;
  min-width: 50px;
  cursor: pointer;
}
#center{
  -webkit-box-flex:3;
      -ms-flex:3;
          flex:3;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 25px;
  cursor: pointer;
}
#progress_back{
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 50px);
  height: 5px;
  border-radius: 2.5px;
  background-color: var(--white);
  overflow: hidden;
}
#progress{
  background-color: var(--light-accent);
  height: 100%;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
}
#timeCursor{
  position: absolute;
  top: 4px;
  left: 25px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
#info, #timeCursor{
  -webkit-transition: opacity .25s;
  transition: opacity .25s;
}
#center:hover #info{
  opacity: 0;
}
#center:hover #timeCursor{
  opacity: 1;
}
#playlistToggle{
  position: relative;
}
#playlist{
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 50px;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
}
#playlistToggle:hover #playlist{
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
#playlist>div{
  background-color: var(--black);
  min-width: 300px;
  height: 3rem;
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#playlist>div:hover{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#playlist>div>* {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#playlist img{
  padding: 2px;
  max-width: 3rem;
  min-width: 3rem;
}
#playlist>div span:first-of-type{
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 .5rem;
}
#playlist span:last-child{
  opacity: .7;
  text-align: right;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 .5rem;
}
aside svg{
  height: 50%;
  max-height: 50%;
  width: 100%;
}
#play path, #pause path, #next path, #playlistToggle path{
  fill: var(--white);
}
#time{
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding-right: 25px;
}
menu a, menu::before, menu::after{
  content: '';
  height: 100%;

  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  position: relative;
  z-index: 1002;
}
menu a.external{
  max-width: 50px;
  min-width: 50px;
}
menu a[href*=facebook]{
  background-color: #3b5998;
  position: relative;
}
menu a[href*=youtube]{
  background-color: var(--strong-accent);
  position: relative;
}
menu a.external svg{
  height: 1rem;
}
menu a.external path{
  fill: var(--white);
}
menu a span{
  position: absolute;
  top: calc(50% + 4px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: .5em 0;
  font-family: 'AirAmericana';
  text-align: center;
  font-size: 1.5rem;
  -webkit-transition: color .25s;
  transition: color .25s;
}
menu a:nth-last-of-type(3)::after{
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: var(--strong-accent);
  left: 0;
  top: calc(100% - 4px);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
  z-index: 1001;
}

menu a:nth-of-type(4).selected ~ a:nth-last-of-type(3)::after { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
menu a:nth-of-type(3).selected ~ a:nth-last-of-type(3)::after { -webkit-transform: translateX(-200%); transform: translateX(-200%); }
menu a:nth-of-type(2).selected ~ a:nth-last-of-type(3)::after { -webkit-transform: translateX(-300%); transform: translateX(-300%); }
menu a:nth-of-type(1).selected ~ a:nth-last-of-type(3)::after { -webkit-transform: translateX(-400%); transform: translateX(-400%); }

menu a:not(.external).selected span, menu a:not(.external):hover span{
  color: var(--strong-accent);
}

section{
  width: 100%;
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
}
h1{
  z-index: -1;
  text-transform: uppercase;
  font-size: 10em;
  line-height: .6em;
  color: var(--grey);
  background-color: var(--white);
  text-align: center;
}

/*fanfare section*/
#fanfare{
  padding-top: 15%;
}
#vid{
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
}
#vid::after{
  content: '';
  display: block;
  position: absolute;
  /*z-index: -1;*/
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent),color-stop(75%, var(--grey)));
  background: linear-gradient(to bottom, transparent 5%,var(--grey) 75%);
}
#vid video{
  width: 100%;
}
#fanfare svg{
  display: block;
  margin: 1em auto 10%;
  overflow: visible;
  width: 50%;
  max-width: 640px;
  min-width: 480px;
}
#fanfare svg rect{
  fill: var(--black);
}
#fanfare svg path{
  fill: var(--strong-accent);
}
#blurb{
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#blurb p{
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin: 0 2rem 2rem;
  font-family: 'Franklin Gothic Book', 'Arial Narrow', 'Arial', sans-serif;
}
#blurb::before, #blurb::after{
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#blurb p a{
  font-weight: 100;
  color: var(--light-accent);
}


/* profiles section */
section#musiciens{
  position: relative;
  overflow-y: visible;
}

#profile{
  text-align: center;
  position: relative;
  height: 60vh;
}
#profile img{
  height: 110%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
}
#profile span{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: .5em;
  z-index: -1;
  font-family: 'AirAmericana';
  font-size: 10rem;
  white-space: nowrap;
  color: var(--strong-accent);
  -webkit-text-stroke: .125rem var(--white);
  -webkit-transform-origin: 50% 75%;
          transform-origin: 50% 75%;
}
#profile img.temp, #profile span.temp{
  -webkit-transition: opacity .35s;
  transition: opacity .35s;
  opacity: 0;
}
#profile img.new{
  -webkit-animation: .35s fadein, .25s ease-out .35s boom-img;
}
#profile span.new{
  -webkit-animation: .35s ease-in zoomin, .25s ease-out .35s boom-span;
}
@-webkit-keyframes fadein {
  0%  {opacity:0;}
  25% {opacity:0;}
  100%{opacity:1;}
}
@-webkit-keyframes zoomin {
  0%  {-webkit-transform:translate(-50%, -50%) scale(0);transform:translate(-50%, -50%) scale(0);}
  50% {-webkit-transform:translate(-50%, -50%) scale(0);transform:translate(-50%, -50%) scale(0);}
  100%{-webkit-transform:translate(-50%, -50%) scale(1);transform:translate(-50%, -50%) scale(1);}
}
@-webkit-keyframes boom-img {
  0%  {-webkit-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1);}
  25% {-webkit-transform:translateX(-50%) scale(1.1);transform:translateX(-50%) scale(1.1);}
  50% {-webkit-transform:translateX(-50%) scale(.95);transform:translateX(-50%) scale(.95);}
  75% {-webkit-transform:translateX(-50%) scale(1.025);transform:translateX(-50%) scale(1.025);}
  100%{-webkit-transform:translateX(-50%) scale(1);transform:translateX(-50%) scale(1);}
}
@-webkit-keyframes boom-span {
  0%  {-webkit-transform:translate(-50%, -50%) scale(1);transform:translateX(-50%, -50%) scale(1);}
  25% {-webkit-transform:translate(-50%, -50%) scale(1.1);transform:translateX(-50%, -50%) scale(1.1);}
  50% {-webkit-transform:translate(-50%, -50%) scale(.95);transform:translateX(-50%, -50%) scale(.95);}
  75% {-webkit-transform:translate(-50%, -50%) scale(1.025);transform:translateX(-50%, -50%) scale(1.025);}
  100%{-webkit-transform:translate(-50%, -50%) scale(1);transform:translateX(-50%, -50%) scale(1);}
}

#profile::after{
  content: '';
  position: absolute;
  top: 0vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  width: 33vw;
  opacity: .25;
  background: radial-gradient(ellipse at center, var(--white) 6%, var(--light-accent) 12%,transparent 61%);
  -webkit-animation: 1.5s linear infinite alternate glow;
}
@-webkit-keyframes glow {
  from {
    opacity: .1;
  } to {
    opacity: .3;
  }
}

#list{
  font-family: 'AirAmericana';
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#list>li{
  /*float: left;*/
  /*width: calc(100vw / 7);*/
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-bottom: 2rem;
}
#list ul{
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#list ul>li{
  cursor: pointer;
  display: block;
  overflow: visible;
  height: 1.25em
}
#list ul>li.selected, #list ul>li:hover{
  color: var(--strong-accent);
}
#list ul>li span{
  padding: .125em;
}

#list svg{
  overflow: visible;
  width: 100%;
}
svg .brass {
  fill: var(--light-accent);
}
svg .zinc {
  fill: var(--white);
}

/* concerts section */
#concerts{
  font-family: 'Franklin Gothic Book', 'Arial Narrow', 'Arial', sans-serif;
  line-height: 1.3;
  padding: 1rem 0 2rem;
}
#concerts .centerWrap{
  text-align: center;
}

#concerts tr.title span{
  font-size: 1.25rem;
  font-style: italic;
  color: var(--light-accent);
  display: inline-block;
  padding: 1rem 0;
}
#concerts table{
  display: inline-block;
  text-align: left;
  border-collapse: collapse;
}
#concerts table span{
  color: var(--light-accent);
}
#concerts table a{
  text-decoration: underline;
}
/*#concerts table tr:not(.title):hover{
  background-color: rgba(230, 231, 232, .2);
}*/
#concerts table td{
  padding: .0625rem 0;
}
#concerts table td:first-child{
  text-align: right;
  width: 25vw;
}
#concerts table td:nth-child(2){
  text-align: center;
  padding: 0 1rem;
}
#concerts table td:last-child{
  font-style: italic;
  opacity: .7;
  width: 25vw;
  max-width: 25vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#concerts table td:last-child:hover{
  overflow: visible;
}

/* videos section */

section#videos{
  padding-top: .5rem;
  overflow: auto; /* because it's built by floats */
}

.thumb{
  width: calc(25vw - 0.5rem); /* 16:9 ratio, multiples of 16 * 1.5625 */
  height: calc(14.0625vw - 0.5rem); /* 16:9 ratio, multiples of 9 * 1.5625 */
  float: left;
  position: relative;
  margin: 0 .25rem .5rem;
  overflow: hidden;
  cursor: pointer;
}
.thumb>div{
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  -webkit-filter: contrast(120%);
          filter: contrast(120%);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .25s;
  transition: all .25s;
}
.thumb::before{
  content: attr(data-title);
  position: absolute;
  top:0;
  z-index: 1;
  width: calc(100% - 0.5rem);
  text-align: center;
  padding: .5rem .25rem 1.25rem;
  opacity: .8;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, black),to(transparent));
  background: linear-gradient(to bottom, black 75%,transparent 100%);
  font-family: 'Franklin Gothic Book', 'Arial Narrow', 'Arial', sans-serif;
}
.thumb svg{
  height: 3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .25s;
  transition: all .25s;
}
.thumb svg path{
  fill: var(--light-accent);
}
.thumb:first-child, .thumb:nth-child(8){
  width: calc(50vw - 0.5rem);
  height: calc(28.125vw - 0.5rem);
}
.thumb:nth-child(8){
  float: right;
}

.thumb:hover>div{
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: .7;
}
.thumb:hover svg{
  -webkit-transform: translate(-50%, -50%) scale(1.25);
          transform: translate(-50%, -50%) scale(1.25);
  -webkit-filter: drop-shadow( 1rem 1rem .5rem black );
          filter: drop-shadow( 1rem 1rem .5rem black );
}

#video_overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 2000;
}
#video_overlay::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  background-color: var(--grey);
}
#video_overlay.open{
  display: block;
}
#ytplayer{
  position: fixed;
  height: 360px;
  width: 640px;
  background-color: black;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
  background-size: cover;
  background-position: center;
}
#video_overlay svg{
  height: 2rem;
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
#video_overlay path{
  fill: var(--white)
}

#contact{
  /*min-height: 100vh;*/
}
form{
width: 40rem;
margin: 1rem auto 2rem;
}
form div.single{
  position: relative;
  margin-bottom: 2rem;
  padding-top: 2rem;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  overflow: hidden;
}
form .single svg{
  position: absolute;
  bottom: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform .75s;
  transition: -webkit-transform .75s;
  transition: transform .75s;
  transition: transform .75s, -webkit-transform .75s;
}
input:focus~svg, input.full~svg{
  -webkit-transform: translateX(-66.6%);
          transform: translateX(-66.6%);
}
form .single path{
  fill: none;
  stroke: var(--white);
  stroke-width: 2px;
  -webkit-transition: stroke .25s;
  transition: stroke .25s;
}
input:focus~svg path, input:hover~svg path{
  stroke: var(--light-accent);
}
input, textarea, label{
  display: block;
  border: none;
  background-color: transparent;
  font-family: 'Franklin Gothic Book', 'Arial Narrow', 'Arial', sans-serif;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 2rem;
  padding: .25rem;
}
input[type='text'], input[type='email']{
  width: 20rem;
}
.single label{
  position: absolute;
  top: 2rem;
  -webkit-transition: all .25s;
  transition: all .25s;
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
  cursor: text;
}
input:focus~label, textarea:focus~label, input.full~label, textarea.full~label{
  -webkit-transform: translateY(-2rem) scale(.80);
          transform: translateY(-2rem) scale(.80);
  opacity: .7;
}
input:focus, textarea:focus{
  outline: none;
}
form textarea{
  width: 100%;
  height: 33vh;
  resize: none;
  line-height: 1.1;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all .25s;
  transition: all .25s;
  margin-bottom: calc(5.25rem - 33vh);
  will-change: margin-bottom;
}
textarea:focus, textarea.full{
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  margin-bottom: 0;
}
form .area span{
  position: absolute;
  top: 4.3rem;
  width: 20rem;
  height: 0;
  -webkit-box-shadow: -1.2px -1.2px 0 1.2px var(--white);
          box-shadow: -1.2px -1.2px 0 1.2px var(--white);
  -webkit-transition: all .25s;
  transition: all .25s;
}
textarea:focus~span, textarea.full~span{
  width:0;
  height: calc(100% - 2rem);
  -webkit-transform: translate(-.5rem,-2.3rem);
          transform: translate(-.5rem,-2.3rem);
}
textarea:focus~span, textarea:hover~span{
  -webkit-box-shadow: -1.2px -1.2px 0 1.2px var(--light-accent);
          box-shadow: -1.2px -1.2px 0 1.2px var(--light-accent);
}
form div.area{
  position: relative;
  margin-bottom: 2rem;
  padding-top: 2rem;
  /*box-shadow: inset 0 0 0 1px red;*/
}
.area label{
  position: absolute;
  top: 2rem;
  -webkit-transition: all .25s;
  transition: all .25s;
  width: 20rem;
  -webkit-transform-origin: left;
          transform-origin: left;
  cursor: text;
}
.button{
  display: inline-block;
  border: solid 2.4px var(--white);
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  white-space: nowrap;
  padding: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: border .25s;
  transition: border .25s;
}
.button:hover, .button:focus{
  border: solid 2.4px var(--light-accent);
}
.button input{
  display: inline-block;
  cursor: pointer;
}
.button svg{
  height: 1.25rem;
  display: inline-block;
  position: relative;
  top: .2rem;
  opacity: 1;
  -webkit-transition: opacity .25s;
  transition: opacity .25s;
}
.button svg:not(:first-of-type){
  position: absolute;
  top: 1.7rem;
  left: 1rem;
}
.button path{
  fill: var(--white);
}
.button[data-state='sending'] svg:first-of-type, .button[data-state='ok'] svg:first-of-type{
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  -webkit-animation: 2s fly;
}
.button svg:last-of-type{
  -webkit-transform: translateX(-25%) scale(1.3);
          transform: translateX(-25%) scale(1.3);
}
.button:not([data-state='default']) svg:nth-of-type(1),
.button:not([data-state='ok']) svg:nth-of-type(2),
.button:not([data-state='cancel']) svg:nth-of-type(3),
.button:not([data-state='sending']) svg:nth-of-type(4){
  opacity: 0;
}
form>p{
  display: inline-block;
  margin-left: 1rem;
}
form [data-state='ok']+p{ color: var(--light-accent); }
form [data-state='cancel']+p{ color: var(--strong-accent); }
@-webkit-keyframes fly {
  from {
    -webkit-transform: translate(0vw, 0vh);
            transform: translate(0vw, 0vh);
  } to {
    -webkit-transform: translate(60vw, -50vh);
            transform: translate(60vw, -50vh);
  }
}

footer{
  color: var(--grey);
  min-height: 33vh;
  background-color: var(--white);
  /*box-shadow: inset 0 0 .5rem black;*/
  padding-bottom: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer>*, footer::before, footer::after{
  content:'';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer svg{
  display: block;
  width: 3rem;
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
}
footer a{
  -webkit-transition: color .25s;
  transition: color .25s;
}
footer a:hover{
  color: var(--light-accent);
}
footer a:hover svg{
  /*transform: scale(1.1);*/
  -webkit-animation: .9s linear infinite beat;
}
footer a:hover path{
  fill: var(--light-accent);
}
footer path{
  fill: var(--grey);
  -webkit-transition: fill .25s;
  transition: fill .25s;
}

/*logo splash anim*/
#fanfare svg g :nth-child(2){
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: .9s linear infinite beat;
}
@-webkit-keyframes beat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  } 10% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  } 20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } 25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } 35% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  } 45% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@media (max-width: 800px) {
  menu::before, menu::after, aside::before, aside::after, footer::before, footer::after, #blurb::before, #blurb::after{
    display: none;
  }

  h1 {
    font-size: 6rem;
    line-height: 3.6rem;
  }

  #vid{
    height: 95vh;
    overflow: hidden;
  }
  #vid video {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: auto;
    height: 100vh;
  }

  #list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    justify-content: center;
  }
  #list ul{
    top: 1rem;
    max-width: 40vw;
  }
  #list>li{
    min-width: 10rem;
    max-width: 40vw;
  }
  #profile span{
    font-size: 7rem;
  }

  #concerts table td:last-child, #concerts table td:first-child{
    width: calc(100vw / 3);
    max-width: calc(100vw / 3);
  }

  .thumb, .thumb:nth-child(8) {
    --main: calc(100vw / 3);
    --ratio: calc(var(--main) * 360 / 640);
    width: calc(var(--main) - 0.5rem);
    height: calc(var(--ratio) - 0.5rem);
    float: left;
  }
  .thumb:first-child, .thumb:nth-child(5), .thumb:nth-child(7) {
    --main: calc(100vw * 2 / 3);
    /*--ratio: calc(var(--main) * 360 / 640);*/
    width: calc(var(--main) - 0.5rem);
    height: calc(var(--ratio) - 0.5rem);
  }
  .thumb:nth-child(5){
    float: right;
  }
  .thumb:nth-child(10){
    display: none;
  }


  #playlist{
    left: auto;
    right: -50px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  #playlistToggle:hover #playlist {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #playlist>div{
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  /* TODO: firefox has extra space on the right of the body even at that size */
}

@media (max-width: 680px) {

  #blurb{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #blurb p{
    margin: 2rem;
  }
  #blurb p:nth-child(2){
    margin: 0 2rem;
  }

  /*TODO: at 640px, the soussaphone gets its own line and becomes huge... */
  /*TODO: at 640px, youtube videos will zoom in past screen size...  */

  form {
    width: 100%;
    margin: auto;
    padding: 1rem 2rem 2rem;
  }
  textarea:focus, textarea.full {

  }
}

@media (max-width: 550px) { /* TODO: width at which things start to get screwed up */
  h1 {
    font-size: 4rem;
    line-height: 2.2rem;
  }

  #fanfare svg {
    width: calc(100% - 4rem);
    min-width: 0;
  }

  #list{
    margin-top: 3rem;
    width: 33vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #list ul{
    top: 0;
  }
  #list>li{
    min-width: 0;
    padding-bottom: 1rem;
  }
  #list svg{
    height: 5.5rem;
  }
  #profile{
    float: right;
    width: 67vw;
  }
  #profile img{
    height: auto;
    width: 150%;
  }
  #profile span{
    top: 100%;
    -webkit-transform: translate(-50%, -.5em);
      transform: translate(-50%, -.5em);
    font-size: 3rem;
    -webkit-text-stroke: .05rem var(--white);
  }
  @-webkit-keyframes boom-span {
    0%  {-webkit-transform:translate(-50%, -.5em) scale(1);transform:translateX(-50%, -.5em) scale(1);}
    25% {-webkit-transform:translate(-50%, -.5em) scale(1.1);transform:translateX(-50%, -.5em) scale(1.1);}
    50% {-webkit-transform:translate(-50%, -.5em) scale(.95);transform:translateX(-50%, -.5em) scale(.95);}
    75% {-webkit-transform:translate(-50%, -.5em) scale(1.025);transform:translateX(-50%, -.5em) scale(1.025);}
    100%{-webkit-transform:translate(-50%, -.5em) scale(1);transform:translateX(-50%, -.5em) scale(1);}
  }
  #profile::after {
    top: 33%;
    height: 67%;
    width: 64vw;
  }
  #concerts table tr.title td:nth-child(2){
    text-align: center;
    transform: translateX(-50%);
  }
  #concerts table td:first-child, #concerts table td:nth-child(2) {
    white-space: nowrap;
    width: 50%;
    max-width: 50%;
    overflow-x: hidden;
    text-overflow: ellipsis;
  }
  #concerts table td:nth-child(2){
    text-align: left;
  }
  #concerts table td:last-child {
    display: none;
  }

  .thumb:first-child, .thumb:nth-child(2), .thumb:nth-child(3) {
    display: block;
    --main: 100vw;
    width: calc(var(--main) - 0.5rem);
    height: calc(var(--ratio) - 0.5rem);
  }
  .thumb{
    display: none;
  }
  #ytplayer {
    width: calc(100vw - 0.5rem);
    height: calc(56.25vw - 0.5rem);
  }
  #video_overlay svg {
    top: 1rem;
    right: 1rem;
  }

  input[type='text'], input[type='email'], .area label, form .area span{
    width: calc(100vw - 4rem);
  }
  textarea:focus~span, textarea.full~span {
    width: 0;
  }

  footer{
    flex-wrap: wrap;
  }
  footer>*:nth-child(2){
    order: 2;
    min-width: 100vw;
    padding: 2rem 0;
  }
  footer>*:first-child, footer>*:last-child{
    order: 1;
    min-width: 100vw;
    padding-top: 2rem;
  }

  #time, aside>a{
    display: none;
  }
  #playlistToggle{
    position: static;
  }
  #playlist{
    width: 100vw;
    left: 0;
    right: auto;
  }
  #playlist>div{
    height: auto;
    padding: .25rem;
    box-shadow: inset 0 -1px var(--white);
  }
  #playlist>div:hover {
    -webkit-transform: none;
    transform: none;
}
}

@media (max-width: 400px) { /* TODO: actual cellphone view */

}
