I have incorporated Bootstrap
into my HTML
page and within a row of text, I have the following styling:
.pick_your_color {
font-size: 72px;
font-family: piepie, sans-serif;
font-weight: 400;
font-style: normal;
color: rgb(75, 45, 30);
line-height: 1.2;
}
<div class="row text-center" style="padding-top: 280px">
<h1 class="pick_your_color">Pick your color</h1>
</div>
Although everything appears to be working fine, the issue arises when I resize the browser or view it on mobile devices as the text spans two lines instead of one. Is there a way to automatically resize the text to fit the height of the row?