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

@import url('https://fonts.googleapis.com/css?family=Boogaloo|Nothing+You+Could+Do');


body {
	background-color:#F2E4C1;
}

header {
	text-align: center;
	margin-bottom: 20px;
}

#wrapper {
	width: auto;
	text-align: center;
	background-color: #fff;
	margin: 12px;
}

nav {
	background-color:#68A28F;
	font-family: Arial Helvetica sans-serif;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

nav ul {
	display: block;
	margin-left: 0;
	font-size: 16px;
	padding: 14px 0 16px;
	list-style-type: none;
}

nav li {
	display: inline-block;
	padding: 0 20px;
	margin-bottom: 0;
}

nav li a {
	text-decoration: none;
	color:white;
	font-weight: bold;

}


nav a:hover {
	color: #F2E4C1;
}

main {
	padding: 20px 30px;
	text-align: left;
}
h1, h2, h3 {
	font-family: 'Boogaloo', cursive;
}
h1 {
	color: #604c39;
	font-size: 50px;
	margin-bottom: 20px;
	margin-top: 10px;
	text-transform: capitalize;
}

h2 {
	color: #e0412e;
	font-size: 30px;
	margin-bottom: 10px;
}

h3 {
	color: #68A28F;
	font-size: 24px;
	margin-bottom: 20px;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 50px;
	width:90%;
	text-align: left;
}

button {
	/* position: absolute; is correct. 
    What else needs fixing to get the button in the correct location? */
    position: absolute;
	right:30px;
	top:20em;
	padding: 10px 20px;
	background-color: #e0412e;
	cursor: pointer;
	border-radius: 15px;
	box-shadow: 5px 5px;
	margin-right: 2em;
}

button a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	font-size: 16px;
	float:right;
}

footer {
	text-align:center;
	margin-top: 20px;
	font-size: 10px;
	padding: 20px;
}

table {
	border-collapse: collapse;
	border: 1px solid black;
	font-family: Arial, Helvetica, sans-serif;
}

th {
	background-color: #68A28F;
	color: #fff;
	font-weight: bold;
	text-transform: capitalize;
	text-align: center;
	font-size: 16px;
}
th, td {
	padding: 10px 20px;
	border: 1px solid black;
}

td {
	font-size: 14px;
}

ul {
	list-style-position: inside;
	margin-left: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

li {
	margin-bottom: 12px;
}

.alignleft {
	align-content: left;
	margin-right: 20px;
}

.alignright {
	float: right;
	margin-left: 20px;
}

#clear {
	clear: both;
}

#column {
	margin-left: 20px;
}

.flex-container {
	display: block;
	justify-content: space-between;
}

.signature {
	font-family: 'Nothing You Could Do', cursive;
	font-size: 32px;
}

.whitewaterhero {
	float:right;
	margin-right: 4em;

}

.floatleft {
	float: left;

}

.bulletlist {
	list-style-type:circle;

}