JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<h1>hello world</h1>

CSS

h1 {
  font-size: 1rem;
}
@media screen and (min-width: 20rem) {
  h1 {
    font-size: calc(1rem + 6 * ((100vw - 20rem) / 680));
  }
}