﻿/*Style sheet*/

/*Standard issue CSS Reset */
body, header, nav, main, footer, h1, div, article, h2 {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Style rules for body */
body {
    background-image: url('../images/spaceBackground.jpg');
}

/* Style rule for header */
header {
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    font-size: 2.5em;
    margin-top: 0.2em;
    color: white;
    padding: 2%;
}

/* Style rules for nav area */
nav {
	text-align: center;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
    opacity: 0.5;
    padding: 0.5%;
}

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-color: #111111;}

nav li {
    display: inline-block;
	color: white;
	padding: 2px;
	text-decoration: none;}

nav ul li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

nav li a:hover {	
	color: lime;
}

/*Style rules for Main area*/
main {
	font-family: "Times New Roman", Times, serif;
    text-align: center;
    font-size: 2.0em;
    text-shadow: 2px 2px black;
	color: white;
	padding: 5%;
}

.minor {
	font-size: 1.25em;
}