https://ethanykc.github.io/contact.html
My contact form is doing this weird thing where the particles are being pushed under the contact form. If i use the canvas as a parent of the section then the contact form disappears even if I set the z-index to 9999.
<section class="fullscreen cover image-bg" id="particles-js" style="height:826px;" >
<div class="container-form" style="background-color: transparent;" >
<form id="contact" action="" method="post">
</form>
</div>
</section>
/*---css for form---*/
.container-form {
max-width:400px;
margin:0 auto;
position:relative;
z-index: 9999;
}
This is the the contents of the main container without the footer and field variables. If someone could help me figure out why the "container-form" class appears to be taking up the whole screen it would be much appreciated.