* {
	margin:0;
	padding:0;
}

@keyframes rainbowtext {
	0%		{color: #f00;}
	20%		{color: #ff0;}
	40%		{color: #0f0;}
	60%		{color: #0ff;}
	80%		{color: #00f;}
	100%	{color: #f00;}
}

/* @keyframes rotate {
	0%		{transform:rotate(0deg)}
	100%	{transform:rotate(360deg)}
} */

body {
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:#0c0c10;
	width:100vw;
	height:100vh;
	position:absolute;
	top:0px;
	left:0px;
	z-index:0;
	text-align:center;
	font-size:50vh;
	animation:rainbowtext 5s linear infinite;
	/* mix-blend-mode:multiply; */
	user-select:none;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
}

/* body:before {
	content:"";
	background:radial-gradient(circle at left top, rgb(41, 107, 129), transparent) repeat scroll 0% 0%, radial-gradient(circle at right top, rgb(243, 221, 189), transparent) repeat scroll 0% 0%, radial-gradient(circle at left bottom, rgb(64, 34, 64), transparent) repeat scroll 0% 0%, rgba(0, 0, 0, 0) radial-gradient(circle at right bottom, rgb(32, 69, 129), transparent) repeat scroll 0% 0%;
	z-index:-1;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100vw;
	height:100vh;
	position:absolute;
	top:0px;
	left:0px;
	animation:rotate 5s linear infinite;
} */