/* *****************************

BVAmbient - VanillaJS Particle Background
Developed by: Bruno Vieira

**************************** */

.bvambient_particle
{
	position: absolute;
	pointer-events: none;
	transition: top linear, left linear;

}

		#ambient {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100vh;
            z-index: -150;
			pointer-events: none; /* Don't interfere with clicking */
			overflow: hidden;
          image-rendering: crisp-edges;
		}
		
		.container {
			position: relative;
			z-index: 1;
			background: rgba(255, 255, 255, 0.7); /* Semi-transparent background so content is readable */
		}
