#test

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FCD347;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.play-button:hover {
  background-color: #FDB813;
}

.play-button svg {
  fill: #FFFFFF;
  width: 50%;
  height: 50%;
}

Leave a Comment