@font-face {
  font-family: "Calibri";
  src: url("Calibri.woff2") format("woff2"), url("Calibri.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --lyricDuration: 2.5s;
  --screen: #bfbfbe;
}

* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

body {
  overflow: hidden;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(water.png);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: 0;
  filter: grayscale(1) contrast(2) brightness(1.5);
}

#project {
  z-index: 1;
}

#captions {
  margin: 4vh auto;
  width: 88%;
  padding: 0.5rem;
  text-align: center;
  font-size: 1.75rem;
  letter-spacing: -1px;
  line-height: 90%;
  z-index: 300;
  font-family: "VCR";
  transform: scaleX(1.1) scaleY(1.15);
}
#captions span {
  background: #000;
  color: #fff;
}

span[yes] {
  font-style: italic;
  text-shadow: 0 0 15px #000;
}

#screen {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Calibri";
  z-index: 100;
}

#audio-player {
  position: fixed;
  z-index: 880;
  bottom: 0rem;
  left: 0;
  width: calc(100% - 6rem);
  margin: 2rem 3rem;
  height: 80px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: "Calibri";
}
#audio-player .wrapper {
  max-width: 80vw;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  border-radius: 5px;
  padding: 1rem;
}
#audio-player .song {
  width: 280px;
  height: 70px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: row;
}
#audio-player .song span[art] {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #e5e5e5;
  color: #888882;
  font-size: 1.5rem;
  text-align: center;
  line-height: 74px;
  text-shadow: 0 0 25px #888882;
  background-size: cover;
  filter: grayscale(1);
}
#audio-player .song .song-info {
  width: calc(100% - 70px);
  height: 70px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
}
#audio-player .song .song-info span[title], #audio-player .song .song-info span[artist] {
  color: #000;
  padding: 0.25rem 0.5rem;
  line-height: 80%;
  font-size: 0.8rem;
}
#audio-player .song .song-info span[artist] {
  color: #6d6d6d;
}

.side {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.side .controls-buttons a:hover {
  transform: scale(1.05);
}
.side .controls {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding-top: 0.1rem;
  backdrop-filter: blur(4px);
  border-radius: 6px;
  border: 1px solid gray;
}
.side a[loop], .side a[shuffle], .side a[play], .side a[skip] {
  width: 40px;
  height: 42px;
  display: inline-block;
  cursor: pointer;
}
.side a[loop] img, .side a[shuffle] img, .side a[play] img, .side a[skip] img {
  object-fit: contain;
  width: 32px;
  height: 32px;
  margin: 0.15rem;
  color: #fff;
  filter: brightness(3);
}
.side a[skip] {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}
.side a[skip] img {
  margin: 0.5rem 0.15rem;
  width: 18px;
  height: 18px;
}
.side a[skip=back] {
  transform: scaleX(-1);
}
.side a[skip=back]:hover {
  transform: scaleX(-1.05);
}
.side a[state=false] {
  opacity: 0.6;
}
.side .song-bar {
  display: inline-block;
  width: 200px;
  height: 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.side .song-bar-inner {
  width: 0;
  height: 12px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background: #888882;
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid red;
}

#song {
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

#album {
  max-width: 800px;
  padding-bottom: 1rem;
  width: 95%;
  display: flex;
  justify-content: space-evenly;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  border-radius: 12px;
  z-index: 999;
}
#album img[art] {
  width: 200px;
  filter: grayscale(1) contrast(2) brightness(1.7);
  border-radius: 6px;
}
#album .tracklisting {
  margin: 1rem;
}
#album .tracklisting img[title] {
  width: 100%;
  max-width: 500px;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  filter: invert(1);
}
#album .tracklisting .track {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 0.15rem 0.8rem;
  margin-bottom: 0.4rem;
  color: #4b4b4a;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1.1rem;
  line-height: 110%;
}
#album .tracklisting .track span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#album .tracklisting .track span[n] {
  width: 16px;
}
#album .tracklisting .track span[title] {
  width: 360px;
  margin-right: 1rem;
  line-height: 120%;
}
#album .tracklisting .track span[timestamp] {
  width: 50px;
  opacity: 0.5;
}
#album .tracklisting .track marquee {
  margin: 0;
  padding: 0;
  display: inline-block;
  height: 15px;
}
#album .tracklisting .track:hover {
  filter: invert(1);
}
#album .tracklisting .track[active] {
  filter: invert(0.8);
}
#album h2, #album h3 {
  color: #000;
  opacity: 0.8;
  line-height: 90%;
}
#album h2 {
  margin-bottom: 0.5rem;
  line-height: 110%;
}
#album h3 {
  margin: 0.15rem 0 1rem;
  font-weight: normal;
}

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