JSFiddle - React, Tailwind, and code Playground

HTML

<div class="header">
    <span class="event">Event here</span> <span class="genre">Genre here</span>
    <span class="something">Maybe something more</span>
    
</div>

CSS

.event{
    color:blue;
    font-size:20px;
}

.genre{
    color:green;
    font-size:15px;
}
.something{
    font-size:12;
    color:red;
}