/* Couleur de fond pour le corps de la page */
body {
	background-color: #f0f0f0;
  }
  
  /* Marge autour de la page */
  body, ul {
	margin: 0;
	padding: 0;
  }
  
  /* Alignement du titre */
  h1 {
	text-align: center;
	margin-top: 50px;
  }
  
  /* Alignement du titre */
  h2 {
	text-align: center;
  }
  
  /* Style de la liste */
  ul {
	list-style-type: none;
	margin-top: 10px;
  }
  
  /* Style des liens */
  a {
	display: block;
	background-color: #00B69F;
	color: white;
	text-align: center;
	padding: 10px;
	margin-bottom: 10px;
	text-decoration: none;
	font-size: 1.2em;
	border-radius: 5px;
	max-width: max-content;
	margin-left: auto;
	margin-right: auto;
  }
  
  /* Style des liens au survol de la souris */
  a:hover {
	background-color: #004040;
	cursor: pointer;
  }

  p {
	display: block;
	text-align: center;
	font-size: 1.2em;
  }
  