JSFiddle - React, Tailwind, and code Playground

by ravimallya

HTML

<div class="intro-wrap">
    <div class="intro-content">
        <div class="shield">
         <h1>Hello</h1>
        <p>Welcome to the thing.</p>
        </div>
    </div>
</div>

CSS

body {
    background: url('http://dev-vm-institute.pantheonsite.io/wp-content/uploads/2019/08/89c259d9-6548-356f-af20-cac4214fba22.jpg') top left no-repeat;
    background-size: 800px;
    font-family: sans-serif;
}

.shield{
    position:relative;
}
.intro-wrap {
    position: relative;
}

.intro-content {
    padding: 32px;
    width: 300px;
    height: 300px;
    padding: 0.625em 0.938em;
    position: relative;
}

.intro-content::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(220, 235, 255,0.8);
    mix-blend-mode: multiply;
}