JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="test">
  
</div>
<div class="point"></div>

CSS

div.test {
  width: 100%;
  height: 200vh;
  background: url(https://picsum.photos/1200);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}
div.point {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: 20%;
  position: fixed;
  left: 10%;
  background: red;
}