body{	
	overflow-x: hidden;
	margin-top: 30px;
	font-family: arial;
	background-color: #FFE97F;
}
.container{
	display: flex;
	flex: row;
	padding: 20px;
	text-decoration: none;
}
.gauche{
	flex: 45%;
	background-color: #C1FFFF;
	border-radius: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 50px;
	padding-left: 50px;
	text-align: left;
	justify-content: center;
}
.gauche h4 {
	font-size: 20px;
}
.centre{
	flex: 1%;
}
.droite{
	flex: 45%;
	background-color: #C1FFFF;
	border-radius: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 50px;
	padding-left: 50px;
	text-align: left;
	justify-content: center;
}
.droite h4 {
	font-size: 20px;
}

.bouton {
	width: 180px;
	justify-content: center;
	margin-top: 10px;
	background-color: #004A7F;
	border: none;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: flex;
	flex: row;
	font-size: 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: transform 0.5s;
}
 .bouton:hover{
 	background-color: #0094FF;
 	transform: scale(1.1);

 }
 .bouton strong {
 	font-family: arial;
 	
 }