JSFiddle - React, Tailwind, and code Playground

HTML

<div class="title">
    I &lt;<span>&hearts;</span>&gt; NY &amp; SF &rarr;
</div>

CSS

/* Это почему-то не работает:
.title {font: 40px/1.5 #333 "Times New Roman";}
---------------------------------------------*/
.title {
    font-size: 40px;
    color: #333;
    font-family: "Times New Roman";
}
.title span {
    color: #f00;
    font-family: "Trebuchet MS";
}