
/*************************************************

	CSS that only applies to the index page
	Due to the order it is called on the HTML

*************************************************/

header {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 15%;
	padding: 1em 2em;
}

header h1 {
	text-align: center;
	background: none;
	margin: 0;
}

header p {
	text-align: center;
	color: rgb(255, 255, 255);
	padding: 0;
	opacity: 0.8;
	margin: -1em 0 0 0;
}

header img {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
	display: block;
	width: 2em;
}

#mainContent {
	margin: 0;
	height: 45rem;
	background-image: url("bkg/background.jpg");
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
}