html {
  min-height: 100%;
  background: #474747;
}
body {
  background: linear-gradient(155deg, #474747 0%, #bababa 52%, #474747 100%);
  color: #fdfdfd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
  max-width: 92%;
  overflow-wrap: anywhere;
}

#header {
  padding: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1 0 auto;
  min-height: calc(100vh - 86px);
  width: 100%;
  display: flex;
  font-size: 85%;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-left: 0;
  margin-right: 0;
  padding: 1.5rem 0.75rem 2rem;
  box-sizing: border-box;
  background-image:
    linear-gradient(180deg, #474747 0%, #474747 100%),
    url('/images/backgroundstage.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

#logo {
  height: 44px;
  padding-top: 10px;
  padding-left: 0;
  position: relative;
}

#footer {
  min-height: 36px;
  background: #a6120e;
  border-top: 1px solid #bababa;
  padding: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-items: stretch;
  justify-content: space-between;
  font-size: 60%;
  gap: 0.5rem;
}

a {
  color: #fdfdfd;
  text-decoration: none;
}

a.white {
  color: #fdfdfd;
}

a.index-link {
  font-weight: bold;
  color: #fdfdfd;
}

h1 {
  font-size: 140%;
  line-height: 1.15;
  padding-top: 0;
  text-align: center;
  text-wrap: balance;
  max-width: 100%;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 135%;
  margin-top: 1em;
  margin-bottom: 0.4em;
}

h3 {
  font-size: 120%;
  padding-top: 0.5em;
}

#spacer {
  margin-top: 8em;
}

#whoweare {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.instrument {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  margin: 0;
  background: #474747;
  border: 1px solid #bababa;
  border-radius: 8px;
  box-shadow: 0 14px 28px #474747;
}

.instrumentimage {
  border-radius: 8px;
  border: 1px solid #bababa;
  width: 110px;
  height: 110px;
  object-fit: cover;
}

.instrumentname {
  flex: 1;
  min-width: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: none;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 420px) {
  #main {
    font-size: 72%;
  }

  h1 {
    font-size: 135%;
  }

  .instrumentimage {
    width: 88px;
    height: 88px;
  }

  .instrumentname {
    padding-right: 0.25rem;
  }
}

.audio-player {
  height: 50px;
  width: 100%;
  background-color: #474747;
  border: 1px solid #bababa;
  border-radius: 8px;
  color: #fdfdfd;
  font-size:85%;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
}

.audio-player .timeline {
  background: #fdfdfd;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #474747;
}

.audio-player .timeline .progress {
  background: #a6120e;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}

.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-player .controls .name {
  padding-left: 20px;
}

.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  color: #a6120e;
  border: 7px solid transparent;
  border-left: 13px solid #fdfdfd;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.5);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: #fdfdfd;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: #fdfdfd;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}

.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}

.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}

.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  top: 15px;
  left: -3px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: #fdfdfd;
  box-shadow: 0 0 20px #474747;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: #a6120e;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}

.video-container {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  position: relative;
  cursor: pointer;
}

video {
  max-height: 62vh;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #bababa;
  box-shadow: 0 18px 40px #474747;
  display: block;
}

#main li {
  margin-bottom: 0.65em;
  line-height: 1.5;
}
