html {
	margin: 0 auto;
	}

body {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	background: white;
	color: black;
	margin: 0;
	}
	
#wrapper {
	margin: 0 auto;
	max-width: 700px;
	padding: 50px 50px 0px 50px;
}

h1 {
	text-align: center;
	font-family: 'Lora', serif;
	font-style: italic;
	font-weight: 400;
	font-size: 34pt;
/*	color: #785964; */
	margin: 30px 0px 0px 0px;
}

h2 {
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

a:link {
	color: #458391;
	text-decoration: none;
}

a:visited {
	color: #458391;
}

a:hover {
	color: #93B7BE;
}

#subtitle {
	text-align: center;
	font-size: 11pt;
}

input, textarea, button {
    font-family: 'Lato', sans-serif;
    font-size: 100%;
    background-color: white;
    border: 1px solid #93B7BE;
    color: #93B7BE;
    font-weight: 300;
}

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

input[type=email] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

footer {
	text-align: center;
}

.section {
    padding: 0px 0px;
}

/* nav bar */

#nav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
}

#nav a {
	color: #ccc;
	text-align: center;
	text-decoration: none;
}

li {
	display: inline-block;
	padding: 14px 16px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
}


