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

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


body {
	background-color:#F2E4C1;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

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

#wrapper {
	width: 960px;
	margin: 0 auto;
	background-color: #fff;
	padding-bottom: 20px;
	box-shadow: 0 0 10px rgba (0, 0, 0, 0.1);
}

nav {
	background-color:#68A28F;
	margin: 12px 0;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}

nav ul {
list-style: none;
	margin: 0;
	padding: 0;
}

nav li {
	display: inline-block;
	padding: 0 20px;
}
nav a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}

nav a:hover {
	color: #F2E4C1;
}

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

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

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

p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 16px;
}

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

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;
	color: #604c39
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 10px;
}

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

td {
	font-size: 14px;
	text-align: center;
}

ul {
	list-style-position: inside;
	margin-left: 20px;
	font-size: 14px;
}

li {
	margin-bottom: 12px;
}

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

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

#clear {
	clear: both;
}

.column {
	width: 50%;
	text-align: left;
}

.flex-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
	gap: 20px;
}
.flex-container img {
	width: 45%;
	border-radius: 8px;
}

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