img { 
	max-width: 90%; 
	height: auto; 
	margin: auto;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
	Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	margin: 30px;
}

#header {
	background-color: #595959;
	color: white;
}

#header a {
  text-decoration: none;  /* enlève le soulignement */
  color: white;           /* couleur noire */
}

#header a:visited {
  color: white;           /* couleur identique même après visite */
  text-decoration: none;  /* toujours pas de soulignement */
}

#header a:hover,
#header a:active {
  text-decoration: underline; /* si tu veux un soulignement au survol, sinon laisse none */
  color: white;                 /* ou une autre couleur au survol */
}

table {
	width: 100; 
	#table-layout: default;
}

th {
	text-align: left;
}

th, td {
	text-align: left; padding-left: 16px; padding-right: 16px;
}

