JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="box"></div>
<div class="box1">
  <div class="box2"></div>
</div>

CSS

body {
  margin: 0;
  background: #30343f;
}
div.box {
  width: 100%;
  padding-bottom: 30%;
  background: url(http://picsum.photos/1920/900);
  background-size: cover;
  background-position: center;
}
div.box1 {
  width: 300px;
  padding-bottom: 20%;
  background: ;
  position: absolute;
  top: 50px;
  right: 100px;
}
div.box2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  padding-bottom: 30%;
  background: url(http://picsum.photos/1920/900);
  background-size: cover;
  background-position: center;
  top:
}