I am struggling to understand why my two buttons (#btn-color and #btn-icon) are stacked on top of each other instead of being aligned side by side. Can you help me find a solution?
#btn-color,
#btn-icon {
display: inline-block;
}
#btn-icon a {
font-weight: 600;
font-size: 1.15em;
padding: 15px 20px 15px 43px;
}
#btn-color a {
font-weight: 600;
padding: 20px 35px;
border-radius: 5px;
border: 2px solid transparent;
color: #fff;
background-color: #d11e5d;
}
<div id="ftr-icn-wrap" class="flex">
<div id="btn-icon"><a href="#">professional</a></div>
<div id="btn-color"><a href="#">Contact me</a></div>
</div>