.click {
  /*font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;*/
}
.click:hover {
  background: #06D85F;
}

.overlay {
  opacity: 0;    
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
    display: flex;
    align-items: center;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}



.back {
    width: 80px;
    margin: auto;
}

.popup {
  margin: 0 auto;
  padding: 0.39em;
  background: var(--black);
  border-radius: 5px;
  width: 50%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h1 {
    font-size: 2em;
}

.popup h2 {

}
.popup a {
    color: #de93bb;
}
.popup .close {
    /* position: absolute; */
    /* top: 20px; */
    /* right: 2.2em; */
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--gray);
    display: flex;
    justify-content: flex-end;
}
.popup .close:hover {
  color: var(--pinkshade);
}
.popup .content {
    max-height: 65%;
    overflow: auto;
    font-size: 0.75em;
}
.popup-linx {
    display: flex;
    justify-content: center;
}
.popup-linx img {
    height: 34px;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 90%;
      /*height: 100%;*/
  }  
}
@media screen and (max-width: 500px){
.album-cover {
    position: relative;
    flex: 1 1 100%;
    max-width: 170px;
    max-height: 170px;
    mix-blend-mode: lighten;
}    
.music-player__title {
    margin: 0 0 0.1em 0;
    font-size: 0.625em;
}
.music-player__author {
    margin: 0 0 0.5em 0;
    font-size: 0.5em;
}    
.music-control__play {
    width: 1.56em;
    height: 1.56em;
    /* margin: 0 1em; */
}   
.popup h1 {
    font-size: 1em;
}   
.popup .content {
    font-size: 0.5em;
}    
}