body {
	margin: 20px auto;
	max-width: 700px;
	line-height: 1.6;
	font-size: 16px;
	color: #00000;
	background-color: white;
	padding: 0 20px;
	padding-bottom: 20px;
	border-radius: 3px;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	border-radius: 3px;
}

html {
	background-color: #e7f3e7;
}

header img {
	height: 1em;
	margin: 0px 10px;
	border-radius: 100%;
}

header.spin img {
	animation: spin 30s linear infinite;
}

header.spin span {
	margin-right: 3px;
}

header {
	text-align: center;
	background: radial-gradient(circle, #d0e7d0, rgba(255, 255, 255, 0));
	text-shadow: 0px 0px 5px white;
	white-space: nowrap;
	font-size: 2.3em;
	font-weight: bold;
	font-family: Sans-serif;
}

header a {
	color: green !important;
	border: 0px;
}

header a:hover {
	text-shadow: 0px 0px 2px #ff0000;
}

header.spin {
	animation: snow 20s ease infinite;
}

h2 {
	font-size: 130%;
	display: inline-block;
	margin-bottom: 0;
}

h2:hover {
	#animation: animatedlink 5s linear infinite;
}

a {
	border-bottom: 1px solid red;
	text-decoration: none;
	display: inline-block;
}

a:hover {
	#animation: animatedlink 20s linear infinite;
	border-bottom-color: blue;
}

a > small {
	font-style: italic;
}

menu ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

menu ul li {
	display: inline-block;
	padding: 0px 5px;
}

menu ul li:last {
	border-right: none;
}

@keyframes snow {
	0% {
		opacity: 1;
		color: green;
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	12% {
		transform: rotateX(40deg) rotateY(0deg) rotateZ(0deg);
	}
	16% {
		color: red;
		transform: rotateX(0deg) rotateY(70deg) rotateZ(0deg);
		opacity: 0.3;
	}
	25% {
		text-indent: -50%;
	}
	30% {
		color: orange;
		transform: rotateX(0deg) rotateY(50deg) rotateZ(360deg);
		opacity: 0.3;
	}
	35% {
		text-indent: 50%;
	}
	40% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	50% {
		opacity: 1;
		color: green;
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
		text-indent: 0%;
	}
}

@keyframes spin {
	0% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}

	50% {
		transform: rotateX(0deg) rotateY(360deg) rotateZ(0deg);
	}

	100% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@keyframes animatedlink {
	0% {
		transform: rotateX(0deg) rotate(360deg) rotate(0deg);
	}
}
