JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<h1>nothings ever easy</h1>
<h2>— Kerri Cranwell, 2021</h2>

CSS

@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@700&display=swap');

html {
  background: black;
  color: white;
}

body {
  background: transparent;
  display: grid;
  justify-items: center;
  align-items: center;
  margin-top: 30vh;
}

h1, h2 {
  margin: 0;
  padding: 0;
  width: 50vw;
  font-family: 'Yanone Kaffeesatz';
  text-transform: uppercase;
}
h1 {
  font-size: 5.9rem;
}
h2 {
  text-align: right;
}