@import url('https://fonts.googleapis.com/css2?family=Griffy&display=swap');

.jukebox {
  background: url(https://i.postimg.cc/XvYd8wxv/60.png);
  background-size: 125px;
  background-position: center;
  border: 2px solid #540202;
  position: absolute;
  width: 255px;
  padding: 5px;
  box-shadow: inset 0 0 10px #540202;
  text-align: justify;
  transition: all 0.3s ease;
  left: 40px;
  top: 90px;
}

span {
  color: #540202;
  margin: 0px;
  font-family: "Griffy", system-ui;
  font-weight: bold;
  font-style: normal;
  filter: drop-shadow(0px 1px 0px #ede0a6) drop-shadow(0px -1px 0px #ede0a6) drop-shadow(1px 0px 0px #ede0a6) drop-shadow(-1px 0px 0px #ede0a6);
  text-decoration: underline;
}

.jb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.jb-title {
  font-weight: bold;
  font-size: 16px;
}

.jb-controls {
  display: flex;
  gap: 5px;
}

.button {
  background: none;
  border: unset;
  border-radius: 100px;
  color: #540202;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.jb-select {
  margin-bottom: 8px;
}

.jb-select select {
  width: 100%;
  padding: 3px;
  font-family: "Griffy", system-ui;
  border: unset;
  border-radius: 3px;
  color: #ede0a6;
  font-size: 12px;
  background-color: #540202;
}

.jb-info {
  font-size: 12px;
  color: white;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*MOBILE*/
@media screen and (max-width: 600px) {
  .jukebox {
    width: 100px;
    top: 38px;
  }
}

@media screen and (max-width: 600px) {
  .jb-select select {
    font-size: 6px;
  }
}

@media screen and (max-width: 600px) {
  span {
    font-size: 8px;
    margin: 0;
  }
}

@media screen and (max-width: 600px) {
  .jb-header, .jb-select {
    margin: 0;
  }
}
















