@charset "utf-8";

body {
	font-family: "catseye", sans-serif;
}

#bg-puzzle {
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	background: #FFF2E5;
}

#bg {
	width: 600px;
	background: #FFF2E5;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #000000;
}

h1 {
	width: 600px;
	background: #603813;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	font-size: 24px;
	color: white;
	text-shadow: 2px 2px 5px #000000;
	text-align: center;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #000000;
}

h3 {
	width: 600px;
	font-family: "catseye", sans-serif;
	color: #603813;
	font-size: 18px;
	text-align: center;
}

#tiles {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 560px;
	height: 295px;
	margin: 10px;
	padding: 10px;
	border: 1px solid #603813;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #000000;
}

.tile {
	width: 100px;
	height: 130px;
	float: left;
	margin: 5px;
	border: 1px solid #603813;
}

img {
	width: 100px;
}

#targets {
	width: 560px;
	margin: 10px;
	padding: 10px;
	border: 1px solid #603813;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #000000;
}
	
.row {
	display: flex;
	margin-left: 125px;
}

.dropzone {
	width: 100px;
	height: 130px;
	background: #a67c52;
	border: 1px solid #603813;
	padding: 0px;
}

.p-puzzle {
	color: transparent;
	position: absolute;
}

.button {
	display: flex;
	justify-content: center;
	background-color: #FFF2E5;
	width: 600px;
	margin: 0px;
	border-radius: 5px;
}

button {
	cursor: pointer;
	margin: 5px 10px 5px 10px;
	padding: 5px 50px 5px 50px;
	border-radius: 5px;
	background-color: #603813;
	font-family: "catseye", sans-serif;
	color: #ffffff;
	font-weight: regular;
}

button:hover {
	box-shadow: 2px 2px 5px #000000;
	transform: scale(1.1,1.1);
}

footer {	
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	background: #422B14;
	margin: 10px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	text-align: center;
}

.footer {
	color: white;
	font-family: "mr-eaves-sans", sans-serif;
	font-size: 0.9em;
	margin: 10px;
}

#logo {
	width: 7%;
	margin-left: 10px;
}

.footer a {
	color: white
}