JSFiddle - React, Tailwind, and code Playground
HTML
<div id="logo-container">
<h1 class="logo">Poppy</h1>
<figure class="banner-image">
<img src="img/banner.png" alt="banner image" class="banner">
</figure>
<h1 class="logo">Woodwork</h1>
<figure class="saw">
<span></span><img src="http://i1200.photobucket.com/albums/bb328/tobeeornot/round-saw.gif">
</figure>
</div> <!-- end of logo container -->
<div id="tag-container">
<figure class="left-plane">
<img src="img/plane-left.gif" alt="hand plane image">
</figure>
<h2 class="tag">Fine Hand Crafted Furniture</h2>
<figure class="right-plane">
<img src=" "img/plane-right.gif" alt="hand plane image">
</figure>
</div> <!-- end of tag container -->
CSS
#logo-container {
background: yellow;
height: 100%;
margin-bottom: 5px;
border-bottom: 2px solid #00ac9d;
width: 1140px;
}
#logo-container h1.logo {
font-family: 'LimelightRegular';
font-size: 6.25em; /*100/16 */
font-style: bold;
text-transform: uppercase;
color: #34291c;
font-weight: 400;
letter-spacing: 0.00625em; /*1/16 */
text-shadow: 0px 0.00625em 0.00625em rgba(255,255,255,0.9);
text-align: center;
display: block; /*default*/
margin:0;
}
#logo-container img.banner {
margin: 0 auto;
display: block;
}
#logo-container img.banner {
width:100%;
max-width: 236px;
max-height: 46px;
}
#logo-container .saw {
text-align: center;
margin-bottom:-50px!important;
margin: 0 auto;
}
#logo-container img.saw {
width:100%;
max-width: 72px;
max-height: 73px;
}
/* =============================================================================
Tag Container
========================================================================== */
#tag-container {
background: green;
height: 150px;
margin-bottom: 5px;
border-bottom: 2px solid #00ac9d;
width: 1140px;
}
#tag-container h2.tag {
font-family: 'Droid Serif', serif;
font-size: 48px;
font-style: italic;
color: #34291c;
letter-spacing: 1px;
text-shadow: 0px 1px 1px rgba(255,255,255,0.9);
text-align: center;
padding: 50px 0 50px 65px;
float: left;
margin: 0;
}
#tag-container .left-plane, .right-plane {
float: left;
display: block;
padding-top: 65px;
margin-left: 75px;
}
#tag-container img {
width:100%;
max-width: 60px;
max-height: 35px;
}