/* Heading Font */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@700&display=swap");

/* Body Font */
@import url("https://fonts.googleapis.com/css2?family=Krona+One&display=swap");

/* set variables */
:root {
  --background-color: rgb(101, 133, 120);
  --heading-text-color: rgb(115, 93, 131);
  --alternate-color: rgb(115, 93, 131);
  --link-text-color: rgb(255, 255, 255);
  --link-text-color-highlight: rgb(150, 150, 150);
  --highlight-color: rgb(115, 93, 131);
  --body-font-color: rgb(255, 255, 255);
  --heading-font: "Cormorant SC"; /* Match name to imported font */
  --body-font: "Krona One"; /* Match name to imported font */
}

html,
body {
  position: relative;
  background-color: var(--background-color);
}

.bx--menu-container {
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  justify-content: center;
}

.bx--menu-heading {
  font-size: 5rem;
  margin-bottom: 5rem;
  font-family: var(--heading-font); /* Match Name to Heading Font */
  color: var(--heading-text-color);
}

.bx--menu-release-name {
  font-size: 2rem;
  font-family: var(--body-font);
  color: var(--alternate-color);
}

.bx--menu-release-date {
  font-size: 1.5rem;
  font-family: var(--body-font);
  color: var(--alternate-color);
}

.bx--menu-links {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.bx--menu-link {
  display: flex;
  padding: 0.5rem;
  width: 50%;
  cursor: pointer;
  margin-top: 1rem;
  background-color: var(--alternate-color);
  font-family: var(--body-font);
  color: var(--link-text-color);
}

.bx--menu-link:hover {
  color: var(--link-text-color-highlight);
}

.bx--content-container {
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin-top: 10%;
  margin-left: 30%;
  max-width: 80%;
  align-items: center;
}

.bx--bio {
  font-family: var(--body-font);
  color: var(--body-font-color);
  font-size: 1.5rem;
}

.bx--tracks-cover {
  width: 30%;
  height: 30%;
  margin-bottom: 3rem;
}

.bx--tracks-heading {
  display: flex;
  margin-bottom: 3rem;
  font-family: var(--body-font);
  color: var(--highlight-color);
  font-size: 3rem;
}

.bx--all-tracks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bx--button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  font-family: var(--body-font);
  background-color: var(--alternate-color);
  color: var(--link-text-color);
  margin-right: 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.bx--button:hover {
  color: var(--link-text-color-highlight);
}

.bx--audio-player {
  position: fixed;
  width: 50%;
  text-align: right;
  padding: 1rem;
  font-family: var(--body-font);
  color: var(--body-font-color);
  z-index: 1;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.bx--audio-player:hover {
  background-color: var(--background-color);
  filter: invert(1);
}

.bx--image-container {
  height: 300px;
  margin: 1rem;
  cursor: pointer;
}

.bx--image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.349);
}

.bx--overlaid-image {
  height: 80%;
  margin-bottom: 1rem;
}

.bx--video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
}

.bx--video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.bx--video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .bx--menu-container {
    position: relative;
    width: 100%;
  }

  .bx--menu-heading {
    font-size: 4rem;
  }

  .bx--menu-link {
    width: 80%;
  }

  .bx--content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 0%;
    justify-content: center;
    align-items: center;
    min-height: 0vh;
    margin-top: 5rem;
    max-width: 100%;
  }

  .bx--audio-player {
    width: 100%;
  }

  .bx--button {
    width: 100%;
  }

  .bx--tracks-cover {
    width: 100%;
    height: 100%;
  }

  .bx--image-container {
    width: 30%;
  }

  .bx--overlaid-image {
    width: 80%;
    height: auto;
  }

  html,
  body {
    overflow-x: hidden;
  }
}
