body {
	background-color: rgba(248,209,129,1);
}
.corps {
	width: 85%;
	margin: auto;
	text-align: center;
}

#calendrier {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 14pt;
	box-sizing: border-box;
}
#calendrier tr {
	height: 20%;
}
#calendrier td {
	width: 20%;
	position: relative;
}
#calendrier td::before{
	content: '';
	display: block;
	padding-bottom:100%;
}
#calendrier td > * {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#calendrier a {
	font-size: 24pt;
}
.haut {
	border-top: 5px black solid;
}
.bas {
	border-bottom: 5px black solid;
}
.droite {
	border-right: 5px black solid;
}
.gauche {
	border-left: 5px black solid;
}
.resolue:after {
	font-size: 24pt;
	content: " ✔";
	color: green;
}

.conteneur {
	display: inline-block;
	vertical-align: top;
	width: 40%;
	margin: 4%;
	text-align: center;
}

.bouton_declencheur {
	width: auto;
	min-width: 30%;
	height: auto;
	min-height: 50px;
	color: black;
	background-color: rgba(243,165,5,1);
	text-align: center;
	font-size: 20px;
	font-family: Georgia,"Times New Roman",Times,serif;
	border: 2px #ddd outset;
	margin-top: 20px;
}

#classement {
	text-align: center;
	border-collapse: collapse;
	font-size: 14pt;
}
#classement td, #classement th {
	padding: 1px 5px 1px 5px;
}

#cont_cla {
	overflow-y: hidden;
	transition: height 0.5s ease-in-out;
}

#retour {
	display: block;
	font-size: 20px;
	margin: 0;
	position: absolute;
}
#image, #textes {
	display: inline-block;
	vertical-align: middle;
	margin: 1%;
}
#image {
	max-width: 720px;
}
#textes {
	min-width: 30%;
}
#textes p, #textes li {
	text-align: justify;
}
.bouton_rep {
	height: 50px;
	color: white;
	text-align: center;
	font-size: 20px;
	font-family: Georgia,"Times New Roman",Times,serif;
	border: 2px #ddd outset;
	width: 30%;
	background-color: #3643f4;
	border: 2px #ddd outset;
	display: inline-block;
	vertical-align: middle;
}

@media all and (max-width:1250px) {
	.conteneur {
		width: 90%;
	}
}