JSFiddle - React, Tailwind, and code Playground

by Jon Eyrick

HTML

<div class='background stretch'>
<div class='box'>
- I don't need to be made to look evil. I can do that on my own.
</div>
</div>

CSS

.stretch {
  background-image: url('https://pbs.twimg.com/profile_images/920734713165250560/dLrrw7Os_400x400.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  width: 350px;
  filter: saturate(120%) hue-rotate(90deg);
  vertical-align: middle;
  margin:auto auto
} .box {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  font-family: sans-serif;
  text-align: center;
  padding: 20px 40px;
} .background {
/*backdrop-filter: url(https://pbs.twimg.com/profile_images/920734713165250560/dLrrw7Os_400x400.jpg) blur(6px) saturate(120%) hue-rotate(90deg);*/
} body {
  background:#111
}