
/*css de l'index*/
h1 {
  text-align: center;
  color: red;
  text-decoration: underline;
}
#banniere{
  position:absolute;
  top:0px;
  left:0px;
     
}


body {
  background-image: url("matrix.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px;
}

/* Boîte principale et titre */
#titre1{
  position: relative;
  overflow: auto;
  margin: auto;
  margin-top: 150px; 
}
#boite1 {
  width: 550px;
  height: 350px;
  position: relative;
  overflow: auto;
  margin: auto;
  margin-top: 10px; 
  border: 2px solid;
  padding: 15px;
  border-radius: 10px;
}


 



.p1 {
  font-style: oblique;
  font-size: large;
  text-decoration:underline;
  text-align: center;
}

nav {
  position: fixed; /* Fixe le bandeau en haut de la page */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #15A102; 
  z-index: 1000; /* pour qu'il soit au-dessus du contenu */
  padding: 10px 0;
  filter: opacity(80%);/*permet de modifier l'opacité*/

}
/*permet de faire l'affichage à la suite*/
nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}

nav li {
  flex: 1;
  text-transform: uppercase;
  text-align: center;
  list-style-type: none;
}

nav a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 10px;
}

nav a:hover {
  background-color: #4EE051;
  color: white;
}
