.music {
  position: relative;
  top: 525px;
  left: 50px;
}

.music-btn {
  scale: 1;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom-width: 3px;
  border-right-width: 2px;
  
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);

}

.music-btn:hover {
  transform: scale(1.1);
}

.player {
  position: absolute;
  top: 55%;
  left: 3%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);

  padding: 10px 15px;
  border-radius: 20px;
  color: white;
  cursor: pointer;

  transition: 0.3s ease;
}