@import url("common.css");


main
{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	width: 70%;
	margin: auto;
	padding: 2ex 0;
	font: 2.9vw museo-slab;
	text-align: center;
	letter-spacing: .1ex;
	line-height: 1.2ex;
	color: white;
	background-color: rgba(245,245,245,.4);
	border-radius: 1ex;
	text-shadow: .1ex .1ex .1ex rgba(40, 40, 40, .7);

	animation: 800ms ease-out fadeIn;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	60% { opacity: 0; left: -3%; }
	100% { opacity: 1; left: 0%; }
}

main > section
{
	margin-top: 3.5ex;
}


a
{
	color: white;
	text-decoration: none;
}

a:hover
{
	position: relative;
	left: -1px;
	top: -1px;
}


footer
{
	position: absolute;
	bottom: 1.5vh;
	right: 1.5vh;
	padding: 1ex 1em;
	margin: 1.5ex 3.5ex;
	background-color: rgba(55,55,55,.4);
	border-radius: 1ex;
	font: 1.3vh Calibri,sans-serif;
	letter-spacing: .1ex;
}
