/*
 * CSS for the moving bubbles
 * Makes sure the bubble container appears behind the contents of the page
 * Gerard Godone-Maresca
 */
body {
	background-color: #2C546B;
}

.bubbles {
	padding:0;
	margin:0;
	min-height:100%;
	background-color:#50afe4;
	background-image:linear-gradient(to bottom,#57B7E0,#3C799D);
	background-attachment:fixed;
}
/* html * { z-index: 1; position:relative; } */
#bubbleContainer {
	z-index:-1;
	overflow:hidden;
	position:fixed;
	height:100%;
	width:100%;
}
#bubbleContainer div {
	position:fixed;
	z-index:-1;
	border-radius:1000px;
}
