As I integrate bootstrap into my website, I've noticed that when the resolution is narrow, my header overlaps. If the header is of a small size, like the typical H1 size, everything looks fine. However, when using a larger size (see CSS below), the issue illustrated in the image occurs.
Is there a way to fix this? Maybe with a property related to vertical spacing or something similar? I am new to working with CSS. One potential solution could be to utilize Fittext.
CSS snippet:
.nevis-font {font-family: 'Nevis', Tahoma, sans-serif;}
.ultra-head {font-size: 7.8em;}
HTML code:
<div class="row-fluid">
<div class="span12">
<br/>
<h1 class="text-center nevis-font ultra-head">DIOGO NUNES</h1>
<br/><br/><br/>
</div>
</div>