@keyframes bgfade {
	0% {   background-color: #40363a; }
	50% {  background-color: #ff89bb; }
	100% { background-color: #40363a; }
}
@-o-keyframes bgfade {
	0% {   background-color: #40363a; }
	50% {  background-color: #ff89bb; }
	100% { background-color: #40363a; }
}

body {
	color: #9ce067;
	animation: bgfade 12s ease-in-out infinite;
	-o-animation: bgfade 12s ease-in-out infinite;
}

#main {
	width: 70%;
	margin: 0 15%;
	text-align: center;
}

#header-icon {
	max-width: 500px;
}

#links {
	list-style: none;
	padding: 0;
}

a:visited, a {
	color: #704ca6;
}

a {
	text-shadow: 0 -15px 2.5px transparent,0 15px 2.5px transparent;
	-webkit-transition: all .4s linear 0s;
	-moz-transition: all .4s linear 0s;
	-ms-transition: all .4s linear 0s;
	-o-transition: all .4s linear 0s;
	transition: all .4s linear 0s;
}

a:hover {
	text-shadow: 0 0 2.5px rgba(30,30,30,.75),0 0 2.5px rgba(30,30,30,.75);
}

p {
	text-align: center;
}

.ref {
	margin: 0px 0px 10px;
	padding: 0px 0px 0px 0px;
}

.ref p {
	padding: 10px 0px;
	margin: 0;
}

