/*
 * CSS for the moving bubbles
 * Makes sure the bubble container appears behind the contents of the page
 * Gerard Godone-Maresca
 */
.bubble_ {
	padding:0;
	margin:0;
	min-height:100%;
	background-color: #9e005d;
    background-image: linear-gradient(to bottom,#303584,#1a1e58);
    background: linear-gradient(-160deg, #440630, #230018);
	background-attachment:fixed;
}
html * { 
	z-index: 1; position:relative; }

#bubbleContainer {
	z-index:0;
	overflow:hidden;
	position:fixed;
	height:100%;
	width:100%;
}
#bubbleContainer div {
	position:fixed;
	z-index:-1;
	border-radius:1000px;
	background-color: rgba(185, 5, 111, 0.08) !important;
	box-shadow: none !important;
}