body {
	margin: 0px;
}

h1 {
	font-family: Georgia, fantasy;
	font-size: 3em;
	border-bottom: 2px solid pink;
	border-right: 2px solid pink;
	width: 300px;
	text-align: center;
	-moz-box-box-shadow: 4px 4px 5px #888888;
	-ms-box-box-shadow: 4px 4px 5px #888888;
	-webkit-box-box-shadow: 4px 4px 5px #888888;
	-o-box-box-shadow: 4px 4px 5px #888888;
	box-shadow: 4px 4px 5px #888888;
	margin: 0px;
	margin-top: 10px;
    -webkit-animation-name: h1-to-white; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-name: h1-to-white;
    animation-duration: 12s;
    background-color: white;
}

li {
	display: flex;
	list-style: none;
	/* display: inline-block; */
	flex-wrap: wrap;
	/* justify-content: space-around; */
}

a:link, a:visited { 
    color: blue;
    text-decoration: none;
/*	    cursor: auto; */
}

a:link:active, a:visited:active { 
    color: blue;
    text-decoration: none;
/*    cursor: auto; */
}