@charset "utf-8";
/* CSS Document */

html, body{
	height:100%;
	margin: 0;
	padding: 0;
	}

body {
	background-image:url(../img/background.jpg);
	display: flex;
	flex-flow: column;
	}
	
.header {
	flex: 0 1 45px;
	background-image:url(../img/headerBKG.jpg);
	background-position:0% -70%;
	box-shadow: 0px 2px 10px black;
	padding: 10px 0px;
	text-align:center;
	}

.logo {
	display: inline-block;
	background-image:url(../img/logo.png);
	height: 45px;
	width: 235px;
}
	
.main{
	flex: 1 1 auto;
	box-shadow: inset 0 0 300px #b6a990;
	text-align:center;
}

.message {
	display: inline-table;
	font-family: 'Arima Madurai', cursive;
	font-size: larger;
	color: white;
	background-color:black;
	border:solid;
	border-image-source:url(../img/messageBKG.png);
	border-image-slice: 20;
	border-image-width: 20px;
	position: absolute;
	width: 500px;
	margin:auto;
	top:0;
	bottom:0;
	left:0;
	right:0;
	box-shadow: 0px 4px 10px #8c7c5f;
}

.bearBKG {
	background-image:url(../img/bearBKG.png);
	background-repeat:no-repeat;
	background-position: 10% bottom;
	background-size: auto 95%;
	height: 100%;
}