.musicBox{
  border: solid 3px #111414;
  padding-bottom: 25px;
  padding-top: 95px;
  padding-right: 25px;
  padding-left: 25px;
  margin: 25px;
  width: fit-content;
  background-image: url('https://turnaminet.neocities.org/Background_images/weirdDoor.webp');
  background-position: 1000px -800px;
  background-size: 1940px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
}

#disc {
  top: 16px; 
  width: 75px; 
  position: absolute;
  transform: rotate(0deg);
  cursor: pointer;
}

.spinDisc {
  animation: spin 5s  linear infinite paused;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}