body {
	background-color: #0c0b3d;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 28px;
	margin: 10px 50px 0px 50px;
	text-shadow: 3px 3px 2px #000000;
}

p {
	font-size: 18px;
	margin: 20px 70px;
}

p#byline {
	text-align: right;
	font-style: italic;
}

hr {
	width: 50%;
}

#banner {
	animation-duration: 3s;
	animation-name: wiggle;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;

	margin: auto;
	text-align: center;
}

#logo {
	max-width: 550px;
}

#nav {
	text-align: center;
	padding: 2px;
}

#foot {
	text-align: center;
	padding: 2px;
}

#date {
	padding: 0px 50px;
}

#content {
	margin: auto;
	text-align: center;
}

#main {
	min-height: 300px;
}

#leftbutt {
	animation-duration: 2s;
	animation-name: float;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-timing-function: linear;

	position: relative;
	float: left;
	top: 50px;
	right: 20px;
}

#rightbutt {
	animation-duration: 2s;
	animation-name: float;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;

	position: relative;
	top: 50px;
	left: 20px;
	float: right;
}

.button {
	font-size: 40px;
	text-shadow: 4px 4px 11px #000000;
}

div.container {
	border-radius: 20px;
	margin: 20px auto;
	border: solid 5px #01011a;
	width: 80%;
	background-color: #141257;
}

@keyframes float{
	from {
	margin-top: -5px;
	margin-bottom: 0px;
	}

	to {
	margin-top: 5px;
	margin-bottom: 0px;
	}
}

@keyframes wiggle{
	from{
	transform: rotate(-1deg);
	}

	50%{
	transform: rotate(0deg);
	}

	to{
	transform: rotate(1deg);
	}
}
	