JSFiddle - React, Tailwind, and code Playground

HTML

<div id="category1">
     <h1><a href="category1.html">MOVIES</a></h1>

    <p>FOR ALL AGES</p>
</div>

CSS

#category1 {
    height: 80px;
    width: 15%;
    float: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border: thin solid #999;
    margin-top: 5%;
    margin-right: 2%;
    margin-bottom: 0px;
    margin-left: 6%;
    text-align: center;
    vertical-align: top;
    background-color:#666;
}
#category1 h1 {
    font-weight: bold;
    color: #FFF;
    text-align: center;
    vertical-align: middle;
    line-height: 100%;
    height: 100%;
    text-decoration: none;
    font-size:2.9vw;
}
#category1 h1 a {
    color: #FFF;
    text-decoration: none;
}
#category1 h1 a:hover {
    color: #999;
    text-decoration: none;
}
#category1 p {
    color: #CCC;
}