﻿/* ******************************* */
/* Formattage de la page d'accueil */
/* ******************************* */

* {
    box-sizing: border-box;
}
body {
	height: 98%;
	background-color: rgb(220, 220, 220);
}
.centre {
	clear: left;
	text-align: center;
}	
.titre {
	color: blue;
	text-align: center;
}
.centre {
	text-align: center;
}
.annonce {
	padding-left: 10%;
	padding-right: 10%;
}
.floating-box {
	display: inline-block;
	width: 28%;
	height: 200px;
	margin: 15px;
	background-color: rgb(255, 165, 0);
	border: 2px solid green;
	padding: 30px;
	overflow: auto;
}
