:root {
  --gray-dark: #333;
  --yellow: #fec339;
  --white: white;
  --gray-light: #b9b9b9;
  --black: black;
  --white-2: white;
  --red-dark: #802728;
  --whitish: #fefec0;
}

.player-container {
  box-shadow: 0 2px 20px 0 var(--gray-dark);
  flex-flow: column;
  width: 320px;
  display: flex;
}

.album-cover {
  position: relative;
}

.space-under-cover {
  background-color: #363636;
  padding: 9px 12px 14px;
}

.list-container {
  flex: 0 auto;
  max-height: none;
}

.company-box {
  background-color: #fff;
  border-bottom: 1px solid #b9b9b9;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding: 18px 20px 18px 0;
  text-decoration: none;
  display: flex;
}

.logo-container {
  padding: 0 19px 0 0;
}

.button-conainer {
  background-color: var(--yellow);
  border: 1px solid #6a6969;
  border-radius: 8px;
  margin-left: 25px;
  padding: 5px 20px;
  text-decoration: none;
}

.body {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image {
  width: 320px;
}

.bckgrd-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: blur();
  background-image: url('../images/Untitled-design-97.jpg');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.heading {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 24px;
  font-weight: 600;
}

.text-block {
  color: var(--white);
  text-align: center;
  font-family: Exo, sans-serif;
  font-size: 12px;
}

.text-block-2 {
  color: #333;
  font-style: normal;
  text-decoration: none;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 70px;
  display: block;
}

.music-service-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--gray-light);
  background-color: #fff;
  justify-content: center;
  height: 72px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.music-service-container.hide {
  display: none;
}

.internal-container {
  flex: 0 auto;
  justify-content: space-between;
  align-self: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-2 {
  max-height: 35px;
}

.button {
  background-color: var(--yellow);
  color: var(--gray-dark);
  border-radius: 10px;
  padding: 10px 20px;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--black);
  color: var(--white);
}

.bottom-container {
  background-color: var(--gray-dark);
}

.top-box {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bottom-box {
  padding-top: 0;
  padding-bottom: 10px;
}

.link {
  color: var(--white);
  text-decoration: none;
}

.right-side-holder {
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.link-block-2 {
  margin-right: 20px;
}

.text-span {
  font-size: 10px;
}

.superscript {
  top: -18.75px;
}

.overlay {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-3 {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .bckgrd-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
    overflow: auto;
  }
}

@media screen and (max-width: 767px) {
  .right-side-holder {
    justify-content: center;
  }

  .link-block-2 {
    margin-right: 10px;
  }
}

@media screen and (max-width: 479px) {
  .right-side-holder {
    align-self: center;
  }
}


