@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: 960px;
	text-align: center;
	background-color:burlywood;
}

a:link { text-decoration: none; color:white;}
a:visited { text-decoration: none; color:white;}
a:hover { text-decoration: none; color:burlywood;}
a:active { text-decoration: none; color:white;}

nav {
	background-color:#68A28F; height: 40px; width:auto;
	margin: 20px;
	text-align: center;
	
	
}


nav li {
	display: inline-block;
	padding: 0px 20px;
	margin: 10px;
	font-family: Arial, Helvetica, sans-serif; 
	font-weight: bold;
	font-size: 18px; 
	text-align: center;
	
}




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

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

h3 {
	color: #68A28F;
	font-size: 24px;
	margin-bottom: 20px;
	font-family: 'Boogaloo', cursive;
}

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

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

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

#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;
	
	
}

td { 
	font-size: 14px;
	border: 1px solid black
}

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

li {
	margin-bottom: 12px;
	text-align: left;
	margin-left: -40px
}

.alignleft {
	move:left;
	margin-right: 20px;
	padding-right: 50px;
}


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

#clear {
	clear: left;
	
}

#column {
	margin-left: 20px;
}

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

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

section {
	width: 20%;
	padding-right: 50px;
}

aside {
	width: 70%;
	margin-left: 70px;
	margin-top: -30px;
}


