:root {
  --primary: rgb(20, 20, 20);
  --secondary: white;
  --easyreadercolor: white;
  --difficultfont: 'VCR';
}
body {
  overflow: hidden;
  color: white;
}
@font-face {
  font-family: 'Karma';
  src: url('/fonts/KarmaFuture.ttf');
}
@font-face {
  font-family: 'VCR';
  src: url('/fonts/VCRosdNEUE.ttf');
}
@font-face {
  font-family: 'Daydream';
  src: url('/fonts/Daydream.ttf');
}
@font-face {
  font-family: 'dotnaga';
  src: url('/fonts/JF-Dot-Naga10B.ttf');
}
p {
  font-family: 'VCR';
}
button p {
  line-height: 0;
  padding-bottom: 1%;
}
h1 {
  font-family: 'Karma';
}
h2 {
  font-family: 'VCR';
  font-size: 1em;
  padding-bottom: 0;
  margin-bottom: 0;
}
img {
  user-select: none;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes slide {
  from {
      left: 0%;
  }
  to {
      left: -24%;
  }
}
#tracklist {
  width: 45%;
  margin: -1.5% 2%;
  border-radius: 25px;
  height: 120%;
  overflow: scroll;
  transform: rotate(15deg);
  position: fixed;
  right: 1%;
  top: -3%;
  scrollbar-color: rgba(255, 255 , 255, 0) rgba(0, 0 , 0, 0);
  overflow-x: hidden;
}
button {
  transform: rotate(-15deg);
  background-color: rgb(20, 20, 20);
  color: white;
  border-radius: 20px;
  padding: 1% 4%;
  margin: 0.75% 2.5% 0.75% 0%;
  cursor: pointer;
  box-shadow: 2px 3px 2px black;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-family: 'VCR';
}
button:hover {
  background-color: darkslategrey;
}
div button:focus {
  background-color: darkslategrey;
}
button p {
  margin-bottom: 1.5%;
}
#tracklist p {
  text-align: right;
}
#details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45%;
  height: 50%;
  position: fixed;
  bottom: 4%;
  left: 2.5%;
  text-align: center;
  text-shadow: -2px 2px 2px black;
  transition: opacity 0.5s;
  opacity: 0;
}
.overlay {
  position: fixed;
  width: 145.9091%;
  z-index: 1;
  filter: grayscale(100%) brightness(50%);
  transition: filter 0.5s, top 0.5s, bottom 0.5s;
}
#topzig {
  top: -7%;
  left: 0;
  animation: slide 4s linear infinite;
  animation-play-state: paused;
}
#bottomzig {
  bottom: -7%;
  left: -24%;
  animation: slide 4s linear infinite reverse;
  animation-play-state: paused;
  transform: scale(-1);
}
#topaccent {
  top: -20%;
  left: -12.5%;
  animation: enterFromTop 0.5s, slide2 6s linear infinite;
  animation-play-state: paused;
  z-index: -1;
}
#bottomaccent {
  bottom: -20%;
  left: -36.5%;
  animation: enterFromBottom 0.5s, slide2 6s linear infinite reverse;
  animation-play-state: paused;
  transform: scale(-1);
  z-index: -1;
}
@keyframes slide2 {
  from {
      left: -12.5%;
  }
  to {
      left: -36.5%;
  }
}
#cd {
  width: 45vh;
  position: fixed;
  top: 10%;
  left: -55%;
  transition: left 0.5s;
}
#cover {
  width: 45vh;
  position: fixed;
  top: 10%;
  left: -40%;
  z-index: 1;
  box-shadow: -1px 1px 4px black;
  border-radius: 5px;
  transition: left 0.5s;
}
#title {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.25em;
  margin-bottom: 0;
}
#date {
  color: darkgrey;
  margin-bottom: 0;
}
button img {
  width: 5%;
  position: fixed;
  right: 0;
  top: 0;
  border-radius: 0 20px 0 0;
}
a {
  color: gainsboro;
}
.loading {
  color: grey;
  font-size: 0.8em;
}
#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#background {
  z-index: -10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
#detailsText {
  height: 42vh;
  overflow-y: scroll;
  margin-top: 6vh;
  border-radius: 20px;
  width: 100%;
}
#detailsText button {
    width: 45%;
    padding: 2%;
    text-align: center;
}
#detailsText button:active {
    background-color: black;
}
@media only screen and (orientation: portrait) {
  #cd {
    width: 35vw;
  }
  #cover {
    width: 35vw;
  }
  #background {
    transform: rotate(-90deg);
    width: 150vh;
    left: -45vw;
    height: 150vw;
  }
  #topzig {
    top: -3%;
  }
  #bottomzig {
    bottom: -3%;
  }
  #title {
    font-size: 1.25em;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.25em;
  }
  #date {
    font-size: 1em;
  }
  #description {
    font-size: 1em;
    height: 20vh;
    overflow-y: scroll;
  }
  #detailsText {
    position: fixed;
    top: 32vh;
    width: 45vw;
    overflow-y: hidden;
  }
  #tracklist {
    transform: none;
    top: -12.5vh;
  }
  button {
    transform: none;
  }
  button img {
    display: none;
  }
}