Whenever I try to use it on my browser, the content shifts to the left and I can't seem to center it using text-align or flexbox. The issue gets resolved when I remove the width property, but I really need it to have that paragraph-style look I'm aiming for.
.pragraph {
position: absolute;
width: 1300px;
height: 182px;
left: 30px;
top: 699px;
line-height: 65px;
text-align: center;
}
.pragraph p {
position: absolute;
font-size: 40px;
font-family: 'Peddana', serif;
text-align: center;
width: 100%;
}
<div class="pragraph">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam sapien diam, eleifend eu fringilla auctor, laoreet et elit. Phasellus efficitur posuere dui vitae laoreet. Phasellus</p>
</div>