/* @override 
	http://laforetfruitiere.org/laforetfruitiere.css */

body {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
	background-color: #f2f9ea;
	
	min-height: 100vh;
	color: DarkOliveGreen;
}
header {
	text-align: center;
	font-family: monospace;
	font-size: 11px;
	padding-top: 7px;
}
div {
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 350px;
}
figure {
	background-image: url(logo-pixels.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 150px;
	display: block;
	width: 250px;
	height: 250px;
	margin: 0 auto auto;
	
	border-radius: 50%;
	background-color: rgba(106, 141, 34, 0.25);
	border: 1px solid DarkOliveGreen;
	
	transition: all .3s ease-in-out 0s;
}
figure:hover {
	background-size: 160px;
	width: 350px;
	height: 350px;
	margin-top: -50px;
	transition: all .3s ease-in-out 0s;
}
p {
	
	text-align: center;
	padding-top: 20px;
	font-size: 36px;
	line-height: 30px;
	transition: all .3s ease-in-out 0s;
}
p small {
	display: block;
	font-size: 20px;
	letter-spacing: 0px;
	transition: all .3s ease-in-out 0s;
	
}
figure:hover + p {
	line-height: 25px;
}
figure:hover + p small {
	letter-spacing: 3px;
}

footer {display: none;}