/* Container needed to position the button. Adjust the width as needed */
.skyt_container {
  position: relative;
  width: 100%;
}

/* Make the image responsive */
.skyt_container img {
  width: 100%;
  height: auto;
}

/* Style the button and place it in the middle of the container/image */
.skyt_container .img_play {
  position: absolute;
  top: 40%;
  left: 40%;
  background-color:#003300;
  border:2px solid #FFFFFF;
  border-radius: 50%;
}

.skyt_container .img_play:hover {
  background-color: black;
}