JSFiddle - React, Tailwind, and code Playground
by joshmoto
HTML
<div class="container">
<div class="flex">
<div class="product">
<img src="https://i.imgur.com/1BXKfbX.png" alt="" />
<h1>Journey to the center</h1>
<p>The point that is equally distant from every point on the circumference of a circle or sphere.</p>
</div>
</div>
</div>
CSS
BODY {
background: #23191a;
color: #ffffff;
}
.container {
padding: 1rem;
}
.flex {
display: flex;
justify-content: center;
text-align: center;
}
.product {
text-align: center;
}