When using pixel units, I can align text no problem. But with viewport units, I can't get anywhere. Here is my code.
#aboutMeTitle {
height: 10vh;
background-color: #BEA69B;
display: block;
}
#aboutMeTitle p {
display: inline-block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif, "FontAwesome Regular";
text-transform: uppercase;
letter-spacing: 0.2em;
vertical-align: middle;
text-align: center;
}
<div class="row" id="aboutMeTitle">
<p>About Me</p>
</div>