<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--clouds: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='filter'%3E%3CfeTurbulence baseFrequency='0.006' numOctaves='6' seed='2' /%3E%3CfeColorMatrix values='1.2 0.8 1.4 -0.5 -0.9 1.4 -0.4 1.3 -0.4 1.3 1.5 1.2 0.1 1.9 1 1.9 0.6 -0.7 1.1 1.6'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23filter)'/%3E%3C/svg%3E%0A") center center no-repeat;
}
svg{
	height:100%;
	width:100%;
	position:absolute;
	z-index:1;
}
body{
	margin:0 auto;
}
.bubble{
	opacity:0.4;
}
.skyHolder{
	overflow:hidden;
	position:absolute;
	height:100%;
	width:100%;
}
.sky{
	position:absolute;
	top:0%;
	left:0%;
	height:100%;
	width:1000vw;
	background:var(--clouds);
	animation: skyMotion 400s alternate infinite ;
}
.sky:after{
	content:'';
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	height:100%;
	width:100%;
	background-image:linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,1));
}
@keyframes skyMotion {
  from {left: 0%;}
  to {left: -900vw;}
}</pre></body></html>