JSFiddle - React, Tailwind, and code Playground

by Alexander

HTML

<header>
<logo class="brand-color-primary">
  <brand>
  <span class="brand-color-secondary">call</span>igent
  </brand><br>
  <tagline>Communications Intelligence</tagline>
</logo>
</header>

CSS

@import url('https://fonts.googleapis.com/css?family=Audiowide|Exo+2|Open+Sans');

logo {
  display: block;
}

logo brand {
  font-family: 'Audiowide', cursive;
  font-size: 3.5rem;
  text-align: center;
  /* 16 * 0.0625 = 1px */
  letter-spacing: 0.15em;
}

logo tagline {
  /* font-family: 'Exo 2', sans-serif; */
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 0.12em;
  line-height: 1rem;
}

.brand-color-primary {
  color: #474e48;
}

.brand-color-secondary {
  color: #0077b5;
}