#deer {
  position: fixed;
  width: 80px;
  pointer-events: none;
  z-index: 99999;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

body {
  background-image: url("https://i.pinimg.com/736x/88/f9/a2/88f9a2814f6c6b6cc0155d8c3dba48a5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: bgmove 60s linear infinite alternate;
}

@keyframes bgmove {
  from { background-position: center top; }
  to   { background-position: center bottom; }
}

#myspace-player {
  width: 250px;
  background: black;
  color: white;
  border: 1px solid white;
  padding: 10px;
  font-family: monospace;
  text-align: center;
}

#track-name {
  font-size: 12px;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.controls button {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 4px 8px;
  margin: 0 3px;
  cursor: pointer;
}

.controls button:hover {
  background: white;
  color: black;
}
