* {
	background-color: black;
	font-family: blackchancery;
}
@font-face {
	font-family: blackchancery;
	src: url(BLKCHCRY.TTF);
}
div.text {
	margin-left: auto;
	margin-right: auto;
	max-width: 35em;
	color: lightgrey;
}
p,li {
	font-size: 20px;
}
h2 {
	text-align: center;
}
a, a:visited {
	color: #FFADAD;
	text-decoration: none;
}
a:hover {
	color: red;
	text-decoration: underline;
}
.snow {
	opacity: 0;
	background-color: transparent;
	/*background: -webkit-linear-gradient(pink 20%,red 40%, purple 60%, blue 80%); */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	background-size: 200% auto;
	animation-name: shine;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
@keyframes shine {
	0% { background-color:	coral; }
	50% { background-color: red; }
	100% { background-color:  coral; }
}
pre {
	font-family: monospace;
}
