* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: black;
  background-image: url("../assets/images/sanctuary.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 0.9;
  z-index: -2;
}

a {
  color: inherit;
  font-family: inherit;
  text-decoration: inherit;
  cursor: pointer;
  transition: color 0.17s ease-out;
}
a:hover {
  color: #f84b15 !important;
}

.hidden {
  opacity: 0 !important;
  pointer-events: none;
  height: 0 !important;
}

#copied-email-popup {
  position: absolute;
  top: 35px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
  pointer-events: none;
}
#copied-email-popup p {
  padding: 10px 40px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 7px;
  letter-spacing: 0.5px;
}
#copied-email-popup p span#email2 {
  color: #f84b15;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 25px;
}
header #name-and-tagline h1 {
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
header #name-and-tagline p {
  font-weight: 200;
  max-width: 200px;
  line-height: 1.3;
  font-size: 14px;
  letter-spacing: 1px;
}
header #social-row {
  display: grid;
  grid-gap: 13px;
  width: fit-content;
  align-items: center;
  grid-template-columns: repeat(5, auto);
  margin-top: 16px;
  background-blend-mode: color-dodge;
  color: #e4e3e8;
}
header #social-row a {
  width: 25px;
  height: auto;
  display: flex;
  flex-direction: column;
}
header #social-row a svg {
  width: 100%;
  height: auto;
  stroke-width: 1.3;
}
header #social-row a.apple-music {
  width: 21px;
}
header #social-row a.mixcloud {
  width: 32px;
}
header #social-row a.soundcloud {
  width: 31px;
}

.toggleable {
  transition: opacity 0.2s ease-in, height 0.17s ease-out;
  overflow: hidden;
}
#play-pause-button > .toggleable.hidden {
  display: none;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
}

#logo-container {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#logo-container img {
  width: 100%;
  height: auto;
}

#now-playing {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-top: 25px;
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  text-align: center;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 2lh;
}
#now-playing > span {
  text-align: center;
}
#now-playing #track-year {
  opacity: 0.6;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

#duration-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 7px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 20px;
}
#duration-section .timestamp {
  font-size: 0.75rem;
  height: 100%;
  opacity: 0.6;
  overflow: visible;
  align-items: center;
  width: 100%;
}
#duration-section .timestamp:first-of-type {
  text-align: right;
  justify-content: flex-end;
}
#duration-section #progress-bar {
  width: 250px;
  min-width: fit-content;
  height: 10px;
  background-color: #222128;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  grid-column: 2;
}
#duration-section #progress-bar #progress-slider {
  width: 0;
  height: 100%;
  background-color: #f84b15;
  transition: width 0.065s ease-out;
}

#controls {
  margin-top: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
#controls a {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#controls a svg {
  width: 13px;
  fill: #ffffff;
  transition: fill 0.14s ease-out;
}
#controls a svg:hover {
  fill: #f84b15;
}
#controls a#play-pause-button > svg {
  width: 22px;
}
#controls a#shuffle-button.enabled svg, #controls a#loop-button.enabled svg {
  fill: #f84b15;
}
#controls a#shuffle-button svg, #controls a#loop-button svg {
  width: 20px;
}

#eq-canvas {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
