JSFiddle - React, Tailwind, and code Playground

by ravimallya

HTML

<div class="intro-wrap">
    <div class="intro-background"></div>
    <div class="intro-content">
         <h1>Hello</h1>

        <p>Welcome to the thing.</p>
    </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;
}
.intro-wrap {
    position: relative;
}
.intro-background {
    background: url('http://dev-vm-institute.pantheonsite.io/wp-content/uploads/2019/08/89c259d9-6548-356f-af20-cac4214fba22.jpg');
    mix-blend-mode: lighten;
    padding: 32px;
    width: 300px;
    height: 300px;
}
.intro-content {
    position: absolute;
    top: 0;
    left: 32px;
}