body {
  background-color: #575757;
}

.album {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5b027;
  border: 3px solid red;
}

@keyframes img-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

#parent {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

/* .album img { */
/* 	animation-duration: 3s; */
/* 	animation-name: img-rotate; */
/* } */

#musicPlay {
  animation-name: img-rotate;
  /* animation-play-state: running; */
  animation-duration: 7s;
  /* animation-delay: 0s; */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#musicPause {
  /* animation-name: img-rotate; */
  animation-play-state: paused;
}

.buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  /* background: blue; */
}

.buttons div img {
  border: 2px solid green;
}

#wrapper {
  position: fixed;
  width: 600px;
  top: 25%;
  left: 25%;
  padding: 1em;
}
