body {
	background-color: lightgrey;
}

h1 {
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size; 20px;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}

.text {
	color: white;
	font-family: Arial, helvetica, sans-serif;
	font-size: 20px;
    padding: 20px;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}

th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
}

section {
	background-color: darkgrey;
}
/*customisation des liens*/
a {
    color: black;
    text-decoration: none;
    transition: color 0.5s ease-out 100ms;
    transition: text-decoration 0.5s ease-out 100ms;
}

a:link {
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    color: white;
    text-decoration: underline;
}

a:active {
    color: black;
}

.nft {
    text-decoration: underline;
}

.bouton {
    background-color: darkgray;
    padding: 10px;
    margin-left: 5px;
    border-radius: 10px;
    transition: background-color 0.5s ease-out 100ms;
}
/*réutilisation du hover du menu pour mes boutons*/
.bouton:hover {
    background-color: #4a4a4a;
    padding: 10px;
    margin-left: 5px;
    border-radius: 10px;
}
/*allignement de mon lien avec l'image*/
.lienspe {
    margin-left: 140px;
}

.img1 {
    width: 40%;
    margin-bottom: 15px;
}
/*utilisation de flexbox pour aligenr mon image au centre*/
.imgcenter {
    display: flex;
    justify-content: center;
}

.img2 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.img3 {
    width: 60%;
    margin-top: 20px;
    margin-bottom: 15px;
}



/*---------------------code de Mme.Maati--------------------*/

.myliste li::marker{
	color: red;
	content: '-';
}

.myliste li{
	padding-inline-start: 1ch;
}

#menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

#menu li {
  float: left;
}

#menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#menu li a:hover:not(.active) {
  background-color: #111;
}

#menu .active {
  background-color: rgb(255, 0, 0);
}