JSFiddle - React, Tailwind, and code Playground

HTML

<span>Information</span>
<ul>
    <li>About Us</li>
    <li>Delivery Information</li>
    <li>Privacy Policy</li>
    <li>Terms & Conditions</li>
    <li>Special Orders</li>
</ul>

CSS

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400');

*{
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

html, body{ background: #232323 }

span{
    font-weight: 400;
    font-size: 1.4em;
    text-transform: uppercase;
}

ul{
    display: flex;
    justify-content: space-around;
    background: transparent;
    margin-top: 30px;
}

ul > li{ font-weight: 300 }