body {
	font-family: "Comic Sans MS", "Chalkboard SE", "Comic Neue", cursive, monospace;
	font-size: 20px;
	color: #ff0;
	background-image: linear-gradient(to left, #70b, #909, #b07);
}
hr {
	color: #c0c;
}
table {
	color: #ff0;
	background-image: linear-gradient(to right, #70b, #909, #b07);
}
td, th {
	border-style: hidden;
}

::selection {
	color: #c0c;
	background-color: #ff0;
}

span.rainbow {
	background-image: linear-gradient(to left, #c0f, #53f, #08f, #0c8, #0e0, #ff0, #f70, #f00);
	-webkit-background-clip: text;
	color: transparent;
	font-weight: bold;
}
span.back {
	background-image: linear-gradient(to right, #a0f, #d0d, #f0a);
	-webkit-background-clip: text;
	color: transparent;
	font-weight: bold;
}

.blink {
	animation: blinker 5s linear infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}
.rotate {
	transform: rotate(230deg);
	margin: 0 30px;
}
