How can I adjust the spacing between my small text and big text on my website?
Here is a snippet of my HTML code:
<div class="header">
<br>
<br>
<br>
<br>
<h1>Summit</h1>
<p>Climb the summit, then simply sum it</p>
</div>
And here is some of my CSS code:
.header h1 {
font-family: 'Baloo 2', cursive;
Font-size: 70px;
color: #22223b;
margin-top: 300px;
padding-left: 60px;
}
.header p {
font-family: 'Baloo 2', cursive;
Font-size: 20px;
color: #22223b;
padding-left: 60px;
padding-top: 0px;
margin-top: 0px;
}
Any suggestions would be greatly appreciated. Thank you!