JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://fonts.googleapis.com/css?family=Geostar"></script>
<div class="header">
    <div id="login">
        <a href="?l=1" id="login_button">Login</a>
    </div>
    
    <div id="head_content">
        <div id="logo">
            <img src="images/logo_376x178.png" alt="logo" width="376" height="178" />
        </div>
        <div id="menubar">
            <div class="toplvl">
                <a href="index.php" class="current" >HOME</a>
            </div>
            <div class="toplvl">
                <a href="about.php" >MORE INFO</a>
            </div>
            <div class="toplvl">
                <a href="helpsheets.php" >HELPSHEETS</a>
            </div>
            <div class="toplvl">
                <a href="contact.php" >CONTACT</a>
            </div>
        </div>
    </div>
</div

CSS

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    
}


@font-face {  
    font-family: "neutra";  
    src: url('../../styles/NeutraDisp-Bold.eot'); /* IE */  
    src: local("Neutra Display"), url('../../styles/NeutraDisp-Bold.ttf') format("truetype"); /* non-IE */  
}

@font-face {  
    font-family: "futura";  
    src: url('../../styles/FuturaStd-Heavy.eot'); /* IE */  
    src: local("Futura Std"), url('../../styles/FuturaStd-Heavy.ttf') format("truetype"); /* non-IE */  
}

@font-face {
  font-family: 'Geostar';
  font-style: normal;
  font-weight: normal;
  src: local('Geostar'), local('Geostar-Regular'), url('http://themes.googleusercontent.com/static/fonts/geostar/v1/mF6BII21okpJrneGkx2Z3QLUuEpTyoUstqEm5AMlJo4.woff') format('woff');
}

legend{
    font-family: neutra, Helvetica, Arial, sans-serif;
    letter-spacing: .125em;

    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
}

.header{
    width: 75em;
    height: 12.375em;
    background-color: #FFFFFF;
    margin: auto;
    font-family: geostar, Helvetica, Arial, Tahoma, Geneva, sans-serif;
}