<div class="table">
<div class="table__row">
<div class="table__cell">
<a href="#" class="table__link">
Гастрономия
</a>
</div>
</div>
</div>
.table {
display: table;
width: 50%;
}
.table__row {
display: table-row;
height: 88px;
}
.table__cell {
display: table-cell;
vertical-align: middle;
background-color: #A4C639;
}
.table__link {
color: #050505;
font: 500 23px Arial;
display: block;
height: 100%;
text-transform: uppercase;
text-align: center;
margin: 0;
padding: 0;
background-color: #ccc;
}