@charset "utf-8";
/* CSS Document */

/*	     __                           
        / /___ ___ __________________/
   __  / / __ `__ \ ___jennifer_____/
  / /_/ / / / / / /____morehead____/
  \____/_/ /_/ /_/_____GR66_______/ 
*/

/*::::CSS RESET::::*/

	* {
		margin: 0;
		padding: 0;
		list-style-type: none;
	}

/*::::HTML SEMANTIC TAGS::::*/

	a:link, a:visited {
  		text-decoration: none;
  		color: #98777b;
  		font-weight: 600;
	}

	a:hover, a:active {
  		text-decoration: underline;
	}
	
	body {
		font-family: Arial, Helvetica, sans-serif;
	}

	details {
		margin-bottom: 15px;
		padding-left: 10px;
		cursor: pointer;
	}

	details > ul {
  		padding: 5px 0px 0px 17px;
	}

	section {
		margin-bottom: 25px;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 21px;
	}

	p,ul {
		line-height: 1.6;
	}

	summary {
		font-weight: 500;
	}

	summary:focus {
		outline: none;
	}

	summary:hover {
		color: dimgray;
	}


/*:::ID & CLASSES::*/


	#name {
		text-align: left;
		padding: 12px 0px;
		margin-top: 16px;
		margin-left: 38px;
	}

	#subtitle {
		background-color: #333;
		color: #f2f2f2;
		padding: 14px 0px 14px 38px;
		margin-bottom: 25px;
	}

	#main {
		max-width: 960px;
		padding: 10px 10px 0px 38px;
	}

