/*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 Alice Lui and this is the beginning of my CONTACT PAGE CSS for 201 Digital Publishing March 2022 ------------ */

html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background: url(images/coffee\ shop.jpeg )
		center center fixed no-repeat;
	background-size: cover;
	
	
}

.center {
    width: 800px;
	padding: 2%;
    margin: 100px auto;
	text-align: center;
	/* removed -- border: 4px dashed white;
	   background: rgba(265, 265, 265, .50); 
	*/
}

   
#logo {
	margin-top: 10px;
    margin-bottom: 50px;
	text-align: center;
	margin-left: -50px;
	/* removed -- red dash;
	*/
}

h1 {
	font-family: superior-title, serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2.1em;
    margin: 0px auto 10px auto;
    color: #5D4641;
	line-height: 2;
}

h2 {
	font-family: mrs-eaves-xl-serif-narrow, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em;
    line-height: 1.1;
    color: #5D4641;
    padding: 0px 0px;
    margin: 0px auto 25px auto;
	margin-top: -12px;
}

p {
	font-family: mrs-eaves-xl-serif-narrow, serif;		
	font-size: 1em;
    line-height: 2;
	margin-top: -20px;
    color: #5D4641;
}

nav{
	width: 80%;
	margin: 0 auto;
	padding: 20px 0;
	font-family: superior-title, serif;
		font-size: 1.1em;
	}

nav ul{
	list-style: none;
	text-align: center;
		letter-spacing: 0.5px;
	}

nav ul li{
	display: inline-block;
	}

nav ul li a{
	display: block;
	padding: 15px;
	text-decoration: none;
	color:#5D4641;
	font-weight: bold;
	text-transform: none;
	margin: 0 10px;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
	transition: all 0.5s;
}

nav ul li a:hover{
	color:#83a178;
}

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: #83a178;
	height: 1px;
}

nav ul li a:hover:after{
	width: 100%;
}


