.youtube-thumbnail {
  position: relative;
  cursor: pointer;
  width: 560px;
  /* Width of the YouTube video */
  height: 315px;
  /* Height of the YouTube video */
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-thumbnail .play-button {
  position: absolute;
  width: 80px;
  height: 60px;
  background-image: url("https://img.icons8.com/color/96/000000/youtube-play.png");
  background-size: cover;
  z-index: 1;
}