html {
  min-height: 100%;
  background: #474747;
}
body {
  background:
    radial-gradient(circle at top left, #a6120e 0, #a6120e 210px, transparent 420px),
    linear-gradient(135deg, #474747 0%, #bababa 48%, #474747 100%);
  color: #fdfdfd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 1.65em;
  margin-bottom: 1.5em;
  max-width: 760px;
}

#header {
  height: 92px;
  padding: 0px;
  background: #a6120e;
  box-shadow: 0 12px 34px #474747;
  z-index: 2;
}

#main {
  flex: 1 0 auto;
  min-height: calc(100vh - 92px);
  background-image:
    linear-gradient(90deg, #474747 0%, #474747 42%, transparent 100%),
    url('/images/backgroundstage.png');
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-left: 0;
  margin-right: 0;
  padding: 3.5rem 1.5rem 4rem;
  box-sizing: border-box;
}

#logo {
  height: 72%;
  padding-left: 22px;
  position: relative;
}

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

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

a.white {
  color: #fdfdfd;
}

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

h1 {
  font-size: 210%;
  line-height: 1.12;
  padding-top: 0;
  margin-bottom: 0.25em;
  text-align: center;
  text-wrap: balance;
}

h2 {
  font-size: 145%;
  margin-top: 1.3em;
  margin-bottom: 0.45em;
}

h3 {
  font-size: 120%;
  padding-top: 0.7em;
  margin-bottom: 0.3em;
}

#spacer {
  margin-top: 8em;
}

#whoweare {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 1080px);
}

.instrument {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.85em;
  margin: 0;
  background: #474747;
  border: 1px solid #bababa;
  border-radius: 8px;
  box-shadow: 0 18px 38px #474747;
  backdrop-filter: blur(8px);
}

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

.instrumentname {
  padding-left: 1em;
  padding-right: 1em;
  max-width: 300px;
  line-height: 1.5;
}

.audio-player {
  height: 50px;
  width: 500px;
  max-width: 100%;
  background-color: #474747;
  border: 1px solid #bababa;
  border-radius: 8px;
  color: #fdfdfd;
  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: min(100%, 960px);
  height: auto;
  box-sizing: border-box;
  padding: 0;
  position: relative;
  cursor: pointer;
}

video {
  max-height: 68vh;
  max-width: 100%;
  width: auto;
  border-radius: 8px;
  border: 1px solid #bababa;
  box-shadow: 0 24px 60px #474747;
  display: block;
  margin: 0 auto;
}

#main > ul,
#main > .index,
#main > .m-elements,
#main > .glossary {
  max-width: 860px;
  line-height: 1.55;
}

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