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

/*	     __                           
        / /___ ___ __________________/
   __  / / __ `__ \ ___jennifer_____/
  / /_/ / / / / / /____morehead____/
  \____/_/ /_/ /_/_____GR66_______/ 
*/
 
 
	body {
		margin: 0px;
	  	font-family: Arial, Helvetica, sans-serif;
	}

	header {
		position: fixed;
		background-color: white;
	}

	img {
		max-width: 85vw;
	}

	figure {
		margin:0px;
	}

	figcaption {
		font-size: 14px;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 21px;
	}

	p {
		line-height: 1.6;
	}


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

	a:hover, a:active {
  		text-decoration: underline;
	}

	html {
		scroll-behavior: smooth;
	}

	section {	
		width: 100vw;
		min-height: 98vh;
		padding: 2vh 0;
	}

	.thumbnail img {
		max-height: 40vh;
		display: inline;
		transition: transform .5s;
		transform-origin: 0% 0%;
	}

	.thumbnail img:hover {
			transform-origin: 0% 0%;
			transform: scale(2);
				-ms-transform: scale(2);
				-webkit-transform: scale(2);

		}


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

	#title a {
		font-size: 24px;
		font-weight: bold;
		color: black;
		text-decoration: none;
	}

	.topnav {
		width: 100vw;
		padding-left: 22px;
	  	overflow: hidden;
	  	background-color: #333;
	}

	.topnav a {
	  	float: left;
	  	display: block;
	  	color: #f2f2f2;
	  	text-align: center;
	  	padding: 14px 16px;
	  	text-decoration: none;
	  	font-size: 17px;
	}

	.topnav a:hover {
	  	background-color: #ddd;
	  	color: black;
	}

	.active {
	  	background-color: #98777b;
	  	color: white;
	}

	.topnav .icon {
	  	display: none;
	}

	.content {
		padding: 120px 0px 0px 38px;
	}

	.text-content {
		max-width: 80vw;
	}

	.whitesmoke {
		background-color: whitesmoke;
	}

	.lightgray {
		background-color: lightgray;
	}



/*//////MOBILE/////*/
@media screen and (max-width: 600px) {

	nav#myTopnav {
		padding-left: 0px;
	}

	.topnav a {
		display: none;
	}

	.topnav a.icon {
	   	float: left;
	    display: block;
	    margin-left: 0px;
	    padding-left: 38px;
	 }

}


@media screen and (max-width: 600px) {
	.topnav.responsive {
	  	position: relative;
	  	padding-left: 0px;
	}

	.topnav.responsive .icon {
	  	display: block;   	
	    left: 0;
	    top: 0;
	}

	.topnav.responsive a {
	    float: none;
	    display: block;
	    text-align: left;
	    margin-left: 0px;
	    padding-left: 38px;
	}
}


	



