body, html {
	margin: 0;
	padding: 0;
	/*height: 100%;*/
}

body {
	background-image: url("images/aurora.jpg");
	/*background-size: 100% 100%;*/
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #1a2857;
}

@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}

#hero {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
}

#nav {
	background: linear-gradient(#1a2857, #566499);
	height: 80px;
	border-bottom: white 1px solid;
}

#logo {
	padding: 20px;
	line-height: 40px;
	float: left;
	color: white;
}

#logo p {
	font-family: 'Raleway', sans-serif; 
	margin-left: 10px;
	padding-left: 10px;
	display: block;
	border-left: 1px white solid;

	position: absolute;
	top: 8px;
	left: 140px;
}

#logo a, #logo a:visited {
	text-decoration: none;
	color: white;
	font-size: 40px;
	font-family: 'Kaushan Script', cursive;
}

.clear {
	clear: both;
}

#message {
	/*position: relative;
	top: 50px;
	left: 15%;*/
	margin-left: auto;
	margin-right: auto;
}

#mainmessage {
	font-family: 'Kaushan Script', cursive;
	color: #c2f0ad;
	font-size: 70px;

	/*position: absolute;
	top: 0px;
	left: 0px;*/
	padding: 0;
	margin: 0;
	margin-top: 30px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;

	opacity: 0;
	-webkit-animation-name: fadein;
	animation-name: fadein;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

#mainmessage #submessage p {
	padding: 0;
	margin: 0;
}

#submessage {
	color: #adeaf0;
	font-family: 'Raleway', sans-serif; 
	color: #adeaf0;
	font-size: 35px;

	margin: 0;
	margin-top: 35px;

	/*position: absolute;
	top: -50px;
	left: -50px;*/
}

#paths {
	/*width: 80%;*/
	margin-left: auto;
	margin-right: auto;

	/*position: absolute;
	top: 350px;
	left: 100px;*/
}

.pathitem {
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	float: left;
	/*margin: 50px;*/
	width: 25%;
	text-align: center;
	margin-bottom: 50px;
	margin-top: 50px;
}

.pathitem a {
	text-decoration: none;
	color: white;
}

.pathitem:hover a {
	color: #c2f0ad;
}

#a {
	opacity: 0;
	-webkit-animation-name: fadein;
	animation-name: fadein;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
#b {
	opacity: 0;
	-webkit-animation-name: fadein;
	animation-name: fadein;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 2.25s;
	animation-delay: 2.25s;
}

#c {
	opacity: 0;
	-webkit-animation-name: fadein;
	animation-name: fadein;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s;
}

#d {
	opacity: 0;
	-webkit-animation-name: fadein;
	animation-name: fadein;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 2.75s;
	animation-delay: 2.75s;
}

#content {
	background-color: #1a2857;
	background: rgba(26, 40, 87, 0.8);
	border-radius: 10px;
	/*border-left: 1px white solid;
	border-top: 2px white solid;*/

	padding: 20px;

	width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;

	opacity: 0;
	-webkit-animation-name: fadein;
	animation-name: fadein;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

#content-title {
	font-family: 'Kaushan Script', cursive;
	font-size: 30px;
	color: white;
	text-align: center;
	border-bottom: 2px white solid;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

#content p {
	color: white;
	font-family: 'Raleway', sans-serif; 
	opacity: 1;
	padding: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0;
}

#content li {
	color: white;
	font-family: 'Raleway', sans-serif; 
	width: 60%;
	padding: 10px;
}

#copyright {
	color: white;
	background-color: #1a2857;
	font-size: 10px;
	border-top: white 1px solid;
	margin-top: 20px;

	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 6px;
}

@media only screen and (min-width: 768px) {
	#hero {
		width: 70%;
	}
	#content {
		width: 70%;
	}
}

@media screen and (min-width: 992px) {
	#hero {
		width: 60%;
	}
	#content {
		width: 60%;
	}
}