JSFiddle - React, Tailwind, and code Playground

by Katarn

HTML

Estoy detrás
<div class="backdrop">
  <div class="modal">
    Hola
  </div>
</div>
Yo también

CSS

.backdrop {
  background: #0009;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.modal {
  background: #fff;
}