Need help adjusting height between text and padding

Hello everyone I just want to adjust the amount of space between my description and the top of the padding. Is there any way to make it so it’s less white showing and more rather than text?

<html>

<head>
	<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
	<title>Survey page</title>
</head>

<style>
h1{
	text-align:center;
	color:white;

}
body{
	background-image:url("https://wallpapercave.com/wp/wp3063667.jpg");
	font-family:oswald;
	background-size:cover;
	background-attachment: fixed;

}

#heading{
	font-size:30px;
	text-align:center;
	
}
#main{
	padding-left:30px;
	background-color:white;
	padding:center;
	padding:90px;
	width:30%;
	height:1%;
	margin:auto;
	border-radius: 8px;
  
}

#button{
	background-color:#98AFC7;
	padding:7px 11px 7px 11px;
	color:white;
	border-radius:6px;
	border-style:solid;
	margin:auto;
}

#button2{
	background-color:grey;
	padding:5px 9px 5px 7px;
  color:white;
  border-radius:6px;
  border-style:solid;
  margin:auto;
}

.terms{
	font-size:15px;
	color:grey;
	font-family:ariel;
}

</style>

<body>

	<h1> HS Soccer Tryout 2018-2019</h1>




<div id="main">

<div id="Heading">
<p> Do you have what it takes to join the team?</p>
<p>Sign up now for a upcoming tryout!</p>
</div>

<forms id="survey-form">
	Name*<input id="name" type="text" name="Name" placeholder="Name">
<br>
<br>
	Email* <input type="text" name="email" placeholder="Email">
<br>
<br>
	Student Number*<input type="text" name="student number" placeholder="Student Number">
<br>
<br>
	Age*<input type="text" name="Age" placeholder="Age">
<br>
<br>
   Birthdate*<input type="text" name="birthdate" placeholder="YYYY/MM/DD">
<br>
<br>

How many years of soccer experince do you have<br>
	<input type="radio" name="Experience" value="1">1</br>
	<input type="radio" name="Experience" value="2">2</br>
	<input type="radio" name="Experience" value="3">3</br>
	<input type="radio" name="Experience" value="4">4+</br>
<br>
What is your preferred position?
<select name="position">
	<option value="Forward">Forward</option>
	<option value="Midfield">Midfield</option>
	<option value="Defender">Defender</option>
	<option value="Goalkeeper">Goalkeeper</option>
	<option value="Waterboyy">Waterboi</option>
</select>
<br>
<br>
Are you given consent to travel outside of your province if desireble?
<br>
<input type="radio" name="travel" value="yes">Yes<br>
<input type="radio" name="travel" value="no">No<br> 
<br>

Have you been in any other Extracurricular clubs/teams?<br>
<input type="checkbox" name="extra" value="Sports">Sports<br>
<input type="checkbox" name="extra" value="Community">Community<br>
<input type="checkbox" name="extra" value="Leadership">Leadership<br>
<input type="checkbox" name="extra"  value="Arts">Arts<br>
<input type="checkbox" name="extra" value="Technology">Technology<br>
<input type="checkbox" name="extra" value="Other">Other<br>
<input type="checkbox" name="extra" value="None">None<br>


<br>

Have you ever participated in any other recreational soccer leagues?
<br>
<input type="checkbox" name="level" value="Intermurals">Intermurals<br>
<input type="checkbox" name="level" value="Houseleague">Houseleague<br>
<input type="checkbox" name="level" value="Rep">Rep<br>
<input type="checkbox" name="level" value="OPDL/Equivalent">OPDL/Equivalent<br>


<br>
Any other info you wish to provide?
<br>
<textarea name="concerns" rows="5" cols="70" placeholder="Additional information">

</textarea>

Agreement
<br>
Agree<input type ="radio" name="agreement" value="agree">
Disagree<input type ="radio" name="agreement" value="disagree">
<br>

Date of form completion
<input type ="text" name="date" Placeholder="YYYY/MM/DD">


<p class="terms"> <i>*I agree with the terms of conditions the information I provide is accurate and any interference may terminate my ability to take part with the team*<i><p>

<button id="button" type="button" name="Submit">Submit</button>
<button id="button2" type="button" name="decline">Decline</button>




</forms>
</div>


</body>
</html>

When you say your description, which description are you referring to?

the heading where it says “do you have what it takes to join the team”