I'm having an issue with aligning my text perfectly in the center. How can I resolve this while still maintaining the ability to adjust it vertically?
<center>
<div class="home-text">
<div class="col-md-6 col-md-offset-3">
<h1 class="home-title bounceInUp animated">NAME</h1>
<h2 class="home-desc bounceInUp animated">HTML, CSS, JavaScript, Python</h2>
</div>
</div>
</center>
.home-text {
position: absolute;
left: 50%;
top: 45%;
color: rgb(255, 255, 255);
}