body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}

@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0.9; }
	100% { opacity: 1; }
}

img#logo {
	margin-top: 20px;
	width: 400px;
	height: 400px;
	opacity: 1;
	animation-name: blink;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	animation-direction: alternate;
}

a {
	font-family: Garamond;
	font-size: 16px;
	color: black;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 2s;
}

a:hover {
	opacity: 1;
	transition: opacity 2s;
}
