body{
    margin: 0;
}
/*Met en forme le titre principal du document*/
.titrePrincipal{
	padding: auto;
	margin-left: 20%;
	margin-right: 20%;
	margin-bottom: 10px;
	text-decoration: none;
    text-align: center;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}
/*Met en forme l'image en dessus du titre*/
.image{
    height: 300px;
    margin-left:41%;
}
/*Permet de mettre en forme tout les onglet*/
.conteneur{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 10px;
    list-style: none;
}
.rectangleBouton{
	margin: 10px;
	width: 100%;
	padding: 15px;
	font-size: 20px;
	color: #615ffc;
	text-decoration: none;
	font-family: sans-serif;
	text-align: center;
    font-weight: bold;
}
/* Pied de page centré et placé au fond de la page */
footer {
    /* Flex pour le centrage du contenu de la balise footer */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Positionnement au fond de la page */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    /* Définition de la police d'écriture */
    font-size: 10pt;
    font-family: 'Courier New', Courier, monospace;
}