I am trying to align text horizontally and vertically inside buttons. I checked tons of solutions, no joy. This is what I have right now:
<div class="buttonx">
                <a href="texttext.html">Text</a>
                <a href="texttext.html">text text<br>text</a>
                <a href="texttext.html">text</a>
                <a href="texttext.html">text</a>
                <a href="texttext.html">text</a>
            </div>
<style>
.buttonx {
    display: flex;
    flex-wrap: wrap;
}
.buttonx a {
    display: table;
    background-color: #a00c1a;
    width: 120px;
    line-height: 20px;
    margin: 10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-align: center;
    align-items: center;
    color: white;
}
</style>
The text comes out as aligned horizontally, but not vertically. Please help.
 
     
    