:root {
  --bg: rgba(0, 0, 0, 0.9);
}

body {
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  user-select: none;

  font-family: "Lalezar", system-ui;
  font-weight: 400;
  font-style: normal;
  color: rgba(245, 245, 245, 0.5);
  margin: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.cover-img {
  max-width: 400px;
  min-width: 400px;
  max-height: 400px;
  min-height: 400px;
  border-radius: 50%;
  box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.5);
  transition: transform 2s ease-out, box-shadow 0.2s linear;
  filter: contrast(1.5) brightness(90%);
  animation: rotatee infinite 120s linear;
}

.cover-img:hover {
  box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.5);
  /* cursor: pointer; */
}

@keyframes rotatee {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cover-img.rotate {
  animation: rotatee infinite 120s linear;
}

.cover-img-inside {
  position: relative;
  left: calc(50% - 30px);
  top: -240px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  /* box-shadow: 0 0 30px 5px rgba(255,255,255,0.5); */
  z-index: 3;
}

.bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2) translateX(-50px);
  z-index: 1;
  animation: bgAnim 30s linear infinite;
}

@keyframes bgAnim {
  0% {
    transform: translateX(0px) scale(1);
  }
  50% {
    transform: translateX(400px) scale(1.5);
  }
  100% {
    transform: translateX(0px) scale(1);
  }
}

.bg-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(10%);
  filter: blur(90px);
}
.title {
  font-size: 4rem;
  margin-top: -3rem;
  color: rgba(245, 245, 245, 0.9);
  z-index: 2;
}

.artist {
  font-size: 1.5rem;
  margin-top: -4rem;
  color: rgba(245, 245, 245, 0.9);
  z-index: 2;
}

#bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 550px;
  height: 8px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px 0px rgba(255, 255, 255, 0.5);
  margin: 0 10px;
  transition: all 0.2s linear;
}

#bar:hover {
  box-shadow: 0 0 40px 2px rgba(255, 255, 255, 0.5);
}

#bar-filler {
  background: rgba(245, 245, 245, 0.9);
  border-radius: 16px;
  height: 8px;
  width: 0%;
  box-shadow: 0px 0px 100px 10px rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease-in-out;
}
