body {
	background: white;
	margin: 0;
	font-family: sans-serif;
}

header, footer, h2 {
	background-color: #bf3c3c;
	color: white;
}

figcaption {
	font-style: italic;
}

header, footer{
	height: 85px;
}

main {
	padding: 0.5em;
}

header nav {
	padding: 8px;
}

header nav ul li a{
	padding: 10px 10px;
    font-size: 20px;
    border: 1px solid;
    border-radius: 10px;
}

header nav ul li a:hover {
	background-color: #000;
}

header nav ul li a.login {
	background-color: black;
	color: white;
}

header input[type=text]{
	color: white;
	font-size: 20px;
    vertical-align: bottom;
    border-radius: 5px;
    border-color: #3c3c3c;
    background-color: black;
}

header input[type=text]::placeholder{
	color: #e1d5d5;
}

header form{
	margin: -2px;
	padding: 0 0 0 15px;
}

header input[type=image]{
	margin: -4px 0;
}

header form select{
	font-size: 22px;
	border-radius: 4px;
	background-color: black;
	color: white;
}

footer div{
	position: fixed;
    background-color: brown;
    bottom: 0;
    width: 100%;
	text-align: center;
	font-size: x-large;
}

p {
	text-indent: 2em;
}

h1 {
	font-variant: petite-caps;
	display: inline;
    position: relative;
    top: -1em;
}

a {
	text-decoration: none;
	color: #a12118;
}

a:hover {
	color: black;
}

em {
	font-style: normal;
    text-decoration: underline;
}

nav{
	float: right;
	list-style: none;
}

nav li {
	list-style: none;
	float: left;
	padding: 0 5px;
}

nav ul li a{
	color: white;
}

nav ul li a:hover{
	color: white;
}

table, td, th {
	border: 1px solid;
}

table {
	background-color: #93c5e5;
	text-align: center;
	width: 100%;
	border-collapse: collapse;
}

tr th {
	border: 2px solid;
}

.btn {
	display: inline-block;
	padding: 7px 10px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid #bf3c3c;
	border-radius: 5px;
	color: #bf3c3c;
	background-color: #fff;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
	background-color: #bf3c3c;
	color: #fff;
	border-color: #fff;
}