/*
	Cinnamon: #CC6633
	Burnt Orange: #6D361B
	Silver: #D9D4D5
	Smoke: #968F80
	Raven: #100F0E
	
*/

/* ------------------- */
/* GLOBAL */
* {
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 16pt;
	line-height: normal;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #100F0E;
}

html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	background-color: #968F80;
}


/* ------------------- */
/* ELEMENTS */
a {
	color: #CC6633;
}

a:hover, a:focus {
	text-decoration: none;
	color: #6D361B;
}

em {
	font-family: 'minion-pro', serif;
	text-transform: uppercase;
	font-size: 15pt;
	font-style: normal;
}

h1 {
	font-family: 'minion-pro', serif;
	font-weight: 700;
	font-size: 26pt;
	text-transform: uppercase;
	display: block;
	margin-bottom: 20px;
}

h2 {
	font-family: 'minion-pro', serif;
	font-weight: 700;
	font-size: 20pt;
	text-transform: uppercase;
}

h3 {
	font-family: 'minion-pro', serif;
	font-weight: 700;
	font-size: 18pt;
}

hr {
	border-width: 2px;
	border-color: #6D361B;
	margin: 0 0 10px;
}

input, select, textarea {
	margin: 10px 0;
}

strong {
	font-weight: 500;
	font-size: inherit;
}





#message {
	width: 80%;
	max-width: 800px;
	background-color: #D9D4D5;
	border-radius: 10px;
	padding: 15px 10px;
	text-align: center;
}

#message img {
	width: 20%;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
}