JSFiddle - React, Tailwind, and code Playground
by Abdul Ahmad
HTML
<p class='logo'>
POLITI<span class='decorative'>X</span>ENTRAL
</p>
SCSS
@import 'https://fonts.googleapis.com/css?family=Cinzel|Cinzel+Decorative';
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.logo {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 100px;
font-family: 'Cinzel', serif;
color: #333a56;
color: #52658f;
font-weight: bold;
text-align: center;
height: 100%;
}
.decorative {
font-family: 'Cinzel Decorative', cursive;
color: #00aa4b;
}