JSFiddle - React, Tailwind, and code Playground

by Matt Hopkins

HTML

<div class="wrapper">
  <div class="hidelogo">
    <!--<img scr="//zaggstudios.com/sites/funneltoolbox/videoframe.png" id="videoframe" />-->
  </div>
  <iframe width="560" height="315" src="https://www.youtube.com/embed/dSX8CRAKQRY?autoplay=1&modestbranding=1&controls=0&showinfo=0&rel=0&hd=1&wmode=transparent" frameborder="0"></iframe>
</div>

CSS

.wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  width: 560px;
  height: 361px;
}

.hidelogo {
  position: absolute;
  width: 560px;
  height: 361px;
  background: url('//zaggstudios.com/sites/funneltoolbox/videoframe.png') center center no-repeat;
  z-index: 999;
  display: block;
  color: #fff;
}

.wrapper iframe {
  margin-top:45px;
}