body {
	font-family: "Comic Sans MS";
	font-size: 16px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	min-height: 96vh;
	color: black;
	background-color: black;
	background-image: url(https://valloraniestates.com/wp-content/uploads/sites/25/2017/03/Quiz-BAckground-1-768x415.jpg);
	background-attachment: fixed;
	background-position: center center;
	margin: 50px;
}

h1 {
	color: #FF0000;
	text-align: center;
}

a {
	color: green;
}

form {
	color: cyan;

}

p {
	color: yellow;
}

h2 {
	color: magenta;
	text-align: center;
}

hr {
	width: 100%;
	border: 2px solid rgb(0, 255, 0);
	margin-top: 20px;
}

ul li {
	position: relative;
	float: left;
	width: 120px;
	height: 150px;
	padding: 100px;
	list-style: none;
}

ul li:nth-child(10n) {
	clear: left;
}

ul li a {
	display: block;
	overflow: hidden;
	width: 200px;
	height: 200px;
	margin-top: 0px;
	margin-left: 40px;
	border: 0px solid red;
	transition-property: width, height, margin, z-index, border;
	transition-duration: 0.4s;
}

ul li a:hover {
	position: relative;
	width: 300px;
	height: 300px;
	margin-top: -56px;
	margin-left: -26px;
	z-index: 100;
	border: 4px solid red;
}

ul li a img {
	position: relative;
	width: 200px;
	height: 200px;
	z-index: 20;
	transition-property: width, height, z-index;
	transition-duration: 0.4s;
}

ul li a:hover img {
	width: 300px;
	height: 300px;
	z-index: 100;
}

img {
	background: white;
}

.caption {
	position: absolute;
	bottom: 0px;
	left: 70px;
	margin-left: 100px;
	font-size: 20px;
	color: cyan;
}

.intro {
	text-align: center;
}

.juste {
	color: lime;
	font-weight: bold;
	font-size: 20px;
}

.mauvaise {
	color: red;
	font-weight: bold;
	font-size: 20px;
}

#footer {
	color: red;
}

#footer1 {
	text-align: center;
	font-size: 20px;
}

input[type="button"] {
	font-size: 40px;
	background-color: lime;
	color: white;
	font-weight: bold;
	display: block;
	margin: auto;
}