body {
  /* background-color: #222;
  color: #eee; */
  font-family: "Quicksand", sans-serif;
}

.banner-block {
  position: relative;
  overflow: hidden;
  /* min-height: 500px; */
}

.banner-bg {
  z-index: -100;
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('cover.jpg');
  filter: blur(10px);
}

.album-cover-border {
  width: 410px;
  height: 410px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.banner-block img {
  height: 380px;
}

.font-alegreya {
  font-family: "Alegreya SC";
}

h1, h2 {
  font-weight: 700;
}
h3 {
  font-weight: 400;
}

.track {
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 20pt;
  transition: all 0.25s;
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  padding-right: 60px;
  position: relative;
}
.track:hover {
  padding-left: 1.25rem;
  background-color: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}
.track.single {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.track.single .track-title {
  backdrop-filter: blur(10px);
}
.track.single .single-bg {
  z-index: -10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-size: 700px;
  background-position: center center;
}
.track.single.single-illbehere .single-bg {
  background-image: url("illbehere.jpg");
  background-position: 0px -380px;
}
.track.single.single-doyouloveme .single-bg {
  background-image: url("doyouloveme.jpg");
  background-position: 0px -420px;
}
.track.single.single-asafeplace .single-bg {
  background-image: url("asafeplace.jpg");
  background-position: 0px -200px;
}
.track-metadata {
  margin: 0px;
  position: relative;
  font-size: 12px;
}
.track-playbtn {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.track:hover .track-playbtn {
  transform: scale(1.2);
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .track.single.single-illbehere .single-bg {
    background-position-x: -80px !important;
  }
  .track.single.single-doyouloveme .single-bg {
    background-position-x: -150px !important;
  }
  .track.single.single-asafeplace .single-bg {
    background-position-x: -140px !important;
  }
}
@media screen and (max-width: 767px) {
  .track.single.single-illbehere .single-bg {
    background-position-x: -80px !important;
  }
  .track.single.single-doyouloveme .single-bg {
    background-position-x: -150px !important;
  }
  .track.single.single-asafeplace .single-bg {
    background-position-x: -140px !important;
  }
}
@media screen and (max-width: 510px) {
  .banner-block {
    min-height: 320px;
  }
  .album-cover-border {
    width: 270px;
    height: 270px;
  }
  .banner-block img {
    height: 240px;
  }
  .side-buttons .btn {
    display: block;
    width: 100%;
  }
  .track {
    font-size: 16pt;
  }
}
@media screen and (max-width: 410px) {
  .track {
    font-size: 14pt;
  }
  .track.single.single-illbehere .single-bg {
    background-position-x: -80px !important;
  }
  .track.single.single-asafeplace .single-bg {
    background-position-x: -190px !important;
  }
}
@media screen and (max-width: 366px) {
  .track {
    font-size: 12pt;
  }
  .track-title {
    text-overflow: ellipsis;
  }
}