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></p>
    </div>
  </div>
</div>

CSS

BODY {
  background: #23191a;
  color: #ffffff;
}

.container {
  padding: 1rem;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product {
  text-align: center;
}