JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<section class="target">
<div class="effect-div"></div>
<div class="bg-intro">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-center text-white">Security with a View</h1>
</div>
</div>
<div class="row">
<div class="centro">
<div class="col-md-8">
<h2 class="text-white">
Accountable Security
Simplified
</h2>
</div>
</div>
</div>
</div>
</div>
</section>
CSS
.target {background-color:rgba(5, 5, 5, 0.592157);}
.effect-div {
position: absolute;
background: rgba(0, 0, 0, 0.6);
width: 100%;
height: 100%;
}
.bg-intro{
background: url('http://storage.googleapis.com/wzukusers/user-17172920/images/5637789f4e80eVZ7rNPX/shutterstock_276530600.jpg') no-repeat center center;
min-height: 100vh;
}
.centro{
position: absolute;
z-index: 99999999;
left: 50%;
top: 50%;
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.text-white{color:#fff;}