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

body {
	background-image: url(../images/paint_bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-family: "catseye";
}

h1, main {
	text-align: center;
}

h1 {
	font-size: 3em;
	color: #fff;
	background-color: #CF4C35;
	border-radius: 5px;
	padding: 15px;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

p {
	color: #CF4C35;
}

label {
	padding: 10px;
}

#color {
	cursor: pointer;
}

#painting {
	display: flex;
	flex-flow: nowrap;
	justify-content: center;
}

#theCanvas {
	border: 1px solid black;
	background-color: #ffffff;
	position: absolute;
	margin-top: 95px;
	cursor: crosshair;
}

button {
	cursor: pointer;
	font-family: "catseye";
	padding: 5px 35px;
	font-size: 1.5em;
	margin-left: auto;
	margin-right: auto;
	color: #CF4C35;
	background-color: #FFC64C;
}

button:hover {
	color: #FFC64C;
	background-color: #CF4C35;
}

footer {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(72,149,77,0.8);
	min-height: 70px;
	clear: both;
}

footer a, footer #copyright {
	color: #ffffff;
}

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

#copyright {
	font-size: 0.8em;
	background-color: transparent;
	padding: 0;
	margin-right: 10px;
}
