body {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	min-height: 100vh;
	font-family: Trebuchet MS, sans-serif;
	color: #bbb;
	background-color: #272727;
}

#resultats {
	position: absolute;
	margin-top: -38px;
}

#resultats span {
	color: white;
}

#resultats ul {
	list-style: none;
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: bold;
}

#resultats li {
	display: inline-block;
}

#resultats li:nth-of-type(2) {
	margin: 0 20px;
}

#resultats li:nth-of-type(3) {
	font-size: 1.5em;
}

#jeu {
	width: 800px;
	height: 600px;
	position: relative;
	overflow: hidden;
	cursor: none;
	border-radius: 10px;
}

#fond {
	width: 100%;
	height: 100%;
	background-image: url("/images/herbe.png");
	background-size: cover;
	transition: filter 20s;
}

.filtre-ambiance {
	width: 800px;
	height: 600px;
	position: absolute;
	z-index: 600;
}

.filtre-ambiance.nuit {
	background-color: rgba(0, 100, 255, 0.25);
}

#fond.nuit {
	filter: hue-rotate(50deg) saturate(80%) brightness(80%);
}

.filtre-ambiance.aube-1 {
	background-image: linear-gradient(to right, rgba(30, 67, 255, 0.2) 25%, rgba(0, 225, 245, 0.2) 75%);
}

#fond.aube-1 {
	filter: hue-rotate(60deg) saturate(100%) brightness(92%);
}

.filtre-ambiance.aube-2 {
	background-image: linear-gradient(to right, rgba(0, 225, 245, 0.2) 25%, rgba(255, 200, 200, 0.2) 75%);
}

#fond.aube-2 {
	filter: hue-rotate(30deg);
}

.filtre-ambiance.jour {
	background-image: linear-gradient(to top, rgba(175, 255, 255, 0.0) 25%, rgba(175, 255, 255, 0.1) 75%);
}

.filtre-ambiance.crepuscule-1 {
	background-image: linear-gradient(to right, rgba(255, 6, 0, 0.2) 25%, rgba(255, 142, 13, 0.2) 75%);
}

#fond.crepuscule-1 {
	filter: hue-rotate(-30deg);
}

.filtre-ambiance.crepuscule-2 {
	background-image: linear-gradient(to left, rgba(125, 0, 255, 0.2) 25%, rgba(225, 0, 255, 0.3) 75%);
}

#fond.crepuscule-2 {
	filter: hue-rotate(-80deg) brightness(75%);
}

.filtre-ambiance.ambiance-enorme {
	background-image: linear-gradient(to right, rgba(255, 0, 200, 0.3) 25%, rgba(255, 215, 50, 0.3) 75%);
}

#fond.ambiance-enorme {
	filter: hue-rotate(70deg);
}

#joueur {
	height: 150px;
	max-height: 667px;
	max-height: 789px;
	position: absolute;
	top: 220px;
	left: 348px;
	transition: 0.125s;
	z-index: 500;
}

img:not(#joueur) {
	display: none;
	transition: transform 0.25s;
}

img[src="images/vache.gif"] {
	height: 215px;
}

img[src="images/fbi.png"] {
	height: 175px;
}

img.gros[src="images/vache.gif"] {
	height: 430px;
}

img.gros[src="images/fbi.png"] {
	height: 350px;
}

#otni-1,
#otni-2,
#otni-3,
#otni-4,
#otni-5 {
	position: absolute;
	top: -500;
	left: -500;
	z-index: 200;
}

.attribution-block {
	position: absolute;
	width: 80px;
	height: 10px;
	margin-top: 15px;
	padding: 4px 8px 6px;
	background-color: #555;
	border-radius: 5px;
	font-size: 10px;
	transition: 0.3s;
	overflow: hidden;
}

.attribution-block div {
	opacity: 0;
	transition: 0.3s;
}

.attribution-block:hover {
	width: calc(800px - 8px * 2);
	height: 33px;
	transition: 0.15s;
}

.attribution-block:hover div {
	opacity: 1;
	transition: 0.15s;
}

.attribution-block a {
	color: #bbb;
}