/*This is my 318 CONTACT PAGE 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;
}



/* ---------- Hello, my name is Riley Wallace and this is the beginning of my CONTACT PAGE CSS for 318 Digital Typography November 2021 ------------ */

html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background: url(images/background.jpg)
	center center fixed no-repeat;
	background-size: cover;
	font-family: "Garamond", sans-serif;
}

.center {
	width: 80%;
	max-width: 800px;
	padding: 2%;
	margin: 100px auto;
	border-radius: 30px 150px;
	text-align: center;
	background: rgb(211, 255, 211, .60);
	}
	  
#logo {
    margin-bottom: 50px;
	margin-top: 40px;
	text-align: center;
	}

p {
	font-size: 1.2em;
    line-height: 1.6;
    color:darkslategrey;
}
    
nav{
	width: 80%;
	margin: 0 auto;
	padding: 20px 0;
		font-family: "Helvetica", sans-serif;
	text-align: center;
	margin-top: 2em;
	}

nav ul {
	list-style: none;
	text-align: center;
		letter-spacing: 2px;
	}
nav ul li a{
	display: block;
	padding: 15px;
	text-decoration: none;
	color:mediumorchid;
	font-weight: 600;
	margin: 0 10px;
	}
nav ul li a, 
nav ul li a:after,
nav ul li a:before {
	transition: all .5s;
}
nav ul li a:hover {
	color: rgb(232, 215, 250);
	}

nav ul li a{
	position: relative;
	}
nav ul li a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	content: '.';
	color: transparent;
	background:mediumorchid;
	height: 1px;
	}
nav ul li a:hover:after {
	width: 100%;
	}