/* CIT 230 - Assignment Portal CSS Template */
/* You may use #HEX or color names */

/* * is a wildcard referring to all elements. */

* { margin: 0; box-sizing: border-box; } 

body { 
    font-size: 16px; 
    line-height: 32px;
    font-family: Helvetica, Arial, sans-serif;
    color: black;
	background-color: #444444;
}

#container {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	background-color: white;
	width: 800px;
}

header {
	height: 85px;
}

h1 {
    font-size: 2em;
	text-align: left;
    color: white;
	margin-top: 20px;
	margin-left: 60px;
}

h2 {
    font-size: 1.5em;
    text-align: center;
    border-bottom: 1px solid #bbb;
	color: #009096;
}

header, main, nav, footer {
    margin: 1.25rem auto;
    padding: .5rem;
    max-width: 800px;
	min-width: 800px;
}

header, footer, footer a {
    text-align: center;
    background-color: #29cbd1;
    color: whitesmoke;
}

header img {
    width: 150px;
    height: auto;
    float: right;
	margin-right: 40px;
	margin-top: -15px;
	outline: 5px solid #009096;
}

nav{
	height: 50px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: -20px;
	background-color: #707070;
	text-align: justify;
}

nav li{
	display: inline-block;
	padding-left: 20px;
	margin-right: 60px;
}

nav a{
	text-decoration: none;
	color: white;
}

nav a:hover, a:visited, a:active{
	color:#29cbd1;
}

main ul{
	margin: 40px;
	color: #29cbd1;
	list-style-type: square;
}

main li{
	margin-top:10px;
}

main p {
	color: black;
}

footer {
	padding: 10px;
    font-size: .75em;
	line-height: 20px;
}

footer a{
	color:white;
	text-decoration:none;
	font-weight:bold;
}

footer a:hover, a:visited, a:active{
	color:black;
}