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

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


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

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


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

	body {
		margin: 0px;
	  	font-family: Arial, Helvetica, sans-serif;
	}

	article {
		float: left;
		margin: 4vw 2vw;
	}

	figure {
		border: 0.5vw solid whitesmoke;
		float: left;
		background-size: cover;
		transition: transform 01s;
			-moz-transition: transform 0.1s;
			-o-transition: transform 0.1s;
			-webkit-transition: transform 0.1s;
	}

	figure img {
		width: 15vw;
	}

	figure:hover {
		transform: scale(1.05,1.05);
			-moz-transform: scale(1.05,1.05);
			-ms-transform: scale(1.05,1.05);
			-o-transform: scale(1.05,1.05);
			-webkit-transform: scale(1.05,1.05);
		box-shadow: 10px 10px 20px 0px gray;
			-moz-box-shadow: 10px 10px 20px 0px gray;
			-webkit-box-shadow: 10px 10px 20px 0px gray;
		}

	h5 {
		font-weight: 400;
		font-style: italic;
	}
	.caption {
		margin-bottom: 1vw;
	}


	#wrapper {
		width: 95vw;
		margin: 3vh auto 0vh;
	}

	#back a {
		font-size: 16px;
		color: gray;
	}

	#back a:hover {
		text-decoration: underline;
	}

	#title {
		font-size: 21px;
		color: black;
		margin-top: 2vw;
	}

	.content {
		width: 75vw;
		margin-top: 2vw;
	}




	

