JSFiddle - React, Tailwind, and code Playground

by Dhanck

HTML

<div class="mins-frame-gen">
  <div class="mins-quote">Dan</div>
</div>

CSS

.mins-frame-gen {
    background: url(https://images.unsplash.com/photo-1526541081349-3ee69702354c?ixlib=rb-0.3.5&s=3430948…&auto=format&fit=crop&w=1500&q=80)center;
    height: 500px;
    width: 500px;
    background-size: cover;
    border-radius: 8px;
}
.mins-quote {
    color: #fff;
    font-family: Segoe UI;
    font-size: 40px;
    font-weight: 100;
    position: absolute;
    top: 420px;
    left: 222px;
    text-align: center;
    text-shadow: 0px 0px 10px rgba(150, 150, 150, 1);
}