:root {
  --gold: #ba8c13;
  --blue: #041c29;
}

.section {
  background-color: #042335;
  background-image: url('../images/bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-flow: column;
  min-height: 100vh;
  padding: 64px 16px;
  display: flex;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  min-height: 100svh;
  padding-top: 24px;
  padding-bottom: 88px;
  display: flex;
}

.div-block-2 {
  background-color: #fff;
  padding: 20px 12px;
  display: flex;
}

.heading {
  color: var(--gold);
  text-align: center;
  letter-spacing: 2px;
  font-family: Fragment Mono, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.title-text {
  color: var(--gold);
  text-align: center;
  margin: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 4.5rem;
  line-height: 1;
  transition: all .2s;
}

.artwork {
  z-index: 3;
  aspect-ratio: 1;
  perspective: 2000px;
  width: 100%;
  max-width: 360px;
  height: 100%;
  position: relative;
}

.image, .image-2 {
  aspect-ratio: 1;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.image-3, .image-4 {
  aspect-ratio: 1;
  position: absolute;
}

.text-block {
  color: var(--gold);
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 20px;
  line-height: 1.2;
}

.text-block-2 {
  color: #fff;
  text-align: justify;
  width: 100%;
  max-width: 56ch;
  margin-bottom: 12px;
  line-height: 1.4;
}

.nav-links {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--gold);
  text-align: center;
  background-image: url('../images/bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 7px 10px 12px 1px #0009;
}

.nav-link {
  color: var(--gold);
  text-transform: uppercase;
  padding: 16px 24px;
  font-family: Fragment Mono, sans-serif;
}

.nav-link:hover {
  background-color: var(--gold);
  color: var(--blue);
}

.audio-player-bottom {
  z-index: 8;
  border-style: none solid none none;
  border-width: 0;
  border-color: var(--gold) var(--gold) transparent;
  background-image: linear-gradient(to bottom, var(--blue), var(--blue)), url('../images/bg.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  position: sticky;
  inset: auto 0% 0%;
}

.player-controls {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: none;
}

.player-control {
  border: .5px none var(--gold);
  width: auto;
  height: 32px;
  padding: 12px;
}

.song-text {
  color: var(--gold);
  width: auto;
  font-family: Fragment Mono, sans-serif;
  font-size: 12px;
  line-height: 1.1;
}

.div-block-4 {
  width: auto;
  padding-left: 0;
  padding-right: 12px;
  display: none;
  overflow: hidden;
}

.audiobars {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  aspect-ratio: 1;
  border: .5px none var(--gold);
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  margin-left: auto;
  padding: 8px;
  display: none;
}

.audiobar {
  background-color: var(--gold);
  border-radius: 24px;
  width: 2px;
  height: 100%;
  padding: 0;
  transition: all .2s;
}

.div-block-5 {
  width: 100%;
  padding: 12px;
}

.div-block-6 {
  background-color: var(--gold);
  width: 86%;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
}

.code-embed {
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
  margin: 0;
}

.cta-button {
  background-color: var(--gold);
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  max-width: 48ch;
  margin-top: 8px;
  padding: 12px 16px;
  font-family: Fragment Mono, sans-serif;
  font-size: 16px;
  line-height: 1;
  transition: all .2s;
}

.cta-button:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
  background-color: #0000;
}

.code-embed-2 {
  width: 100%;
  max-width: 600px;
  margin-top: 12px;
}

@media screen and (max-width: 991px) {
  .div-block {
    padding-top: 32px;
    padding-bottom: 88px;
  }

  .text-block-2 {
    width: 100%;
    max-width: 56ch;
  }

  .nav-links {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .div-block {
    padding-top: 32px;
    padding-bottom: 88px;
  }

  .nav-links {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-bottom: 104px;
  }

  .div-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding: 24px 0 48px;
  }

  .heading {
    font-size: 18px;
  }

  .title-text {
    font-size: 2rem;
  }

  .text-block {
    font-size: 16px;
    font-weight: 700;
  }

  .text-block-2 {
    text-align: left;
    width: 100%;
    max-width: 56ch;
    font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    font-size: 14px;
  }

  .nav-links {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 10px;
  }

  .cta-button {
    margin-top: 12px;
    font-size: 14px;
  }
}


