/*This is my 201 Contact Web Page Project using Eric Meyer's reset at the top of my page -- your CSS starts on line 56 */



/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ---------- This is the beginning of my 201 Contact Web Page Project ------------ */

html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background-image: url("images/greengradiant.pdf");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;	
}

.center {
	border-radius: 25px;
    width: 800px;
	padding: 2%;
    margin: 100px auto;
 	background: rgba(255, 255, 255, 0.75); /*this uses opacity of 15% for the background color*/
	text-align: center;
	border: double 4px white;
}

   
#logo {
    margin-bottom: 16px;
	border: 3px rgb(255, 255, 255);
	text-align: center;
}

h1 {
	/* FONT-FAMILY GOES HERE CHOOSE FROM TYPEKIT OR GOOGLE FONTS */
	.crimson-text-bold {
		font-family: "Crimson Text", serif;
		font-weight: 700;
		font-style: normal;
	}
	font-size: 2em;
    margin: 0px auto 10px auto;
    color: #2a7738;
}

h2 {
	 /* FONT-FAMILY GOES HERE CHOOSE FROM TYPEKIT OR GOOGLE FONTS */
	 .crimson-text-semibold {
		font-family: "Crimson Text", serif;
		font-weight: 600;
		font-style: normal;
	 }
	font-size: 1.5em;
    line-height: 1.4;
    color: #2a7738;
    padding: 0px 0px;
    margin: 0px auto 25px auto;
}

p {
	/* FONT-FAMILY GOES HERE CHOOSE FROM TYPEKIT OR GOOGLE FONTS */
	.crimson-text-regular {
		font-family: "Crimson Text", serif;
		font-weight: 400;
		font-style: normal;
	}
	font-size: 1.2em;
    line-height: 1.6;
    color: #2a7738;
}
nav{
	
		font-family: 'Times New Roman', Times, serif;
		font-size: 1.2em;
		width: 400px; 
		margin: 0 auto;
		border: double rgb(255, 255, 255);
		border-width: 3px 0;
		text-align: center;
		margin-top: 2em;
		
		}
#footer {
	bottom: 2%;
	position: fixed;
	width: 100%;
	height: 30px;
	color: #fff;
	text-align: center;
	nav-down: auto;

}

nav li{
	display: inline;
}

nav a{
	display: inline-block;
	padding: 10px;
 }   
 a{
	color: #78be85;
	text-decoration: none;
	font-weight: bold;
 }
 a:hover{ opacity: 1;
	transition: 0.75s;
	color: #26692e;
	
 }
    


