JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">Some random text BEFORE the video</div>
<div class="container">
<div class="video">
<span class="video-preloader">Loading</span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ig3qHRVZRvM" frameborder="0" class="inv"></iframe>
</div>
</div>
<div class="container">Some random text AFTER the video</div>
CSS
.container {
width: 100%;
float: left;
}
.video {
max-width: 560px;
max-height: 315px;
margin-right: auto;
margin-left: auto;
}
.video-preloader{
position: relative;
text-align:center;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
overflow: hidden;
}
.inv {
opacity: 0.1;
}