JSFiddle - React, Tailwind, and code Playground

by Andrew Lyndem

HTML

<div class="wrapper">
        <div class="header">
            Heading
        </div>
        <div class="main">
            Content
        </div>
        <div class="footer">More details on how you can help coming soon.</div>
</div>

CSS

.header{
    color: #FFFFFF;
    font-size: 14vw;
    text-align: center;
    font-family: OSWALD;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    width: 100%;
    line-height: 1.2em;
    background-color:yellow;
}

.main{
    display: inline-block;
    width: 300px;
    height: 380px;
    overflow: hidden;
    padding: 19px 22px 7px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "futura-pt", sans-serif;
    letter-spacing: 2px;
    line-height: 45px;
    position: relative;
    right: 0px;
    background-color:red;
}

.contact{
    border-top: 6px solid #e2d056;
    border-bottom: 6px solid #e2d056;
    width: 250px;
    margin: 25px 0 0;
    padding: 10px 22px 10px;
    text-align: center;
}

.footer {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "futura-pt", sans-serif;
    letter-spacing: 2px;
    line-height: 25px;
    text-align: left;
    padding-left: 30px;
    background-color:green;
}
.main-wrap{width:100%;}