html {
  height: 100%;
}
body {
  background-color: #303030;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

p {
  line-height: 1.5em;
  margin-bottom: 1.5em;
}

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

#main {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  font-size: 85%;
  flex-direction: column;
  align-items: center;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

#logo {
  height: 35px;
  padding-top: 9px;
  padding-left: 9px;
  position: relative;
}

#footer {
  height: 36px;
  background: #0C1D81;
  padding: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-items: stretch;
  justify-content: space-between;
  font-size: 60%;
}

a {
  color: #0C1D81;
  text-decoration: none;
}

a.white {
  color: white;
}

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

h1 {
  font-size: 130%;
  padding-top: 0.5em;
}

h2 {
  font-size: 120%;
}

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

#spacer {
  margin-top: 8em;
}

#whoweare {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.instrument {
  display: flex;
  flex-direction: row;
  padding: 0.25rem;
  margin: 0.25rem;
  background-color: #00000080;
  border-radius: 16px;
}

.instrumentimage {
  border-radius: 16px;
  border: 1px solid #00000080;
  width: 110px;
  height: 110px;
}

.instrumentname {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: 300px;
}

.audio-player {
  height: 50px;
  width: 100%;
  background-color: #00000080;
  color: orange;
  font-size:85%;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
}

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

.audio-player .timeline .progress {
  background: orange;
  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: orange;
  border: 7px solid #0000;
  border-left: 13px solid white;
}
.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: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  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: white;
  box-shadow: 0 0 20px #000a;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  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 20px;
  position: relative;
  cursor: pointer;
}

video {
  width: 100%;
  height: auto;
  display: block;
}
