
/* This will define how most of the website looks */

body{
	background-color: coral;
	padding:0;
    margin:0;
	font-family: Arial, Helvetica, sans-serif;
}

header{
	background-color: rgb(150,150,150);
	width: 100%;
	height: 100px;
	border-bottom: 2px solid;
}
header h1{/* Why are margins weird near the top of the page? */
	margin: 0px;
	position: relative;
	left: 5%;
	top: 10%;
}


/* [ INDEX ] */

/* This is where all of the content is shown */
/* I'll separate the rules for individual pages and the websites broader style rules later. */


