html {
	height: 80%;
}

body {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-content: center;
	height: 80%;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell',
		'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.popup {
	color: white;
	background: rgba(255, 255, 255, 0.15);

	border-radius: 10px;
	padding: 20px 40px;
}

@keyframes fly {
	100% {
		transform: rotate(1turn) translate(100px) rotate(-1turn);
	}
}

@keyframes flyPlus {
	100% {
		transform: rotate(-1turn) translate(100px) rotate(1turn);
	}
}

.bubbler {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #341e45;
}

.bubbler-item {
	position: absolute;
	filter: blur(60px);
	opacity: 0.8;
}

.bubbler-item.one {
	border-radius: 100%;
	width: 110%;
	height: 110%;
	background-color: #373372;
	left: -25%;
	top: -25%;
	z-index: 3;
	animation: fly 32s linear infinite;
	transform: rotate(0) translate(80px) rotate(0);
}

.bubbler-item.two {
	border-radius: 100%;
	width: 80%;
	height: 100%;
	background-color: #7c336c;
	left: 15%;
	bottom: -30%;
}

.bubbler-item.three {
	border-radius: 100%;
	width: 100%;
	height: 80%;
	bottom: -25%;
	right: -25%;
	background-color: #b3588a;
	animation: flyPlus 22s linear infinite;
	transform: rotate(0) translate(100px) rotate(0);
}
