#musicplayer {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  max-width: 33%;     
 color:#f7e4f2;
  font-size: 16px;
  line-height: 140%;
border-image: url("https://64.media.tumblr.com/2f2e9cd4ffe0ebf10bf4ededc4f54f1e/1dd0d242a395e1ed-01/s75x75_c1/fbea4638965e2a533ed88090524c9af25c65b1bb.pnj") 7 fill round;
   border-width: 7px;
    border-style: solid;
}

#musictitle {
font-family: Spirit;
color:#f7e4f2;
text-shadow: 0 0 10px #f7e4f2;
letter-spacing: 1.2px;
  background-image: url("https://64.media.tumblr.com/b61fb467e456f7696118e1aceef355f5/75a30e1b40bff3a8-a7/s250x400/b3b2965cccbcbd1f193241a8f3e22e04f17118a8.png");
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: calc(100% - 10px - 1px);
  margin-left: calc(10px + 1px);
}

#musicpixel {
  width: 100%;
  padding: 5px;
  position: relative;
  min-height: 20px;
  min-width: 20px;
  border-radius: 15px;
   background-image: url("https://64.media.tumblr.com/b61fb467e456f7696118e1aceef355f5/75a30e1b40bff3a8-a7/s250x400/b3b2965cccbcbd1f193241a8f3e22e04f17118a8.png");
  border-right: 3px solid transparent;
}

.overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  background-image: url("https://64.media.tumblr.com/b61fb467e456f7696118e1aceef355f5/75a30e1b40bff3a8-a7/s250x400/b3b2965cccbcbd1f193241a8f3e22e04f17118a8.png");
}

#musicplayer:hover .overlay {
  opacity: 1;
  transition: 0.3s ease;
}

.playpause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
}


#musicpixel img {
  display: block;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 8s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

