/* ELEMENTS*/

html,body {
  margin: 0;
  padding: 0;
  font-family: Avenir, sans-serif;
   user-select: none;/* desactive le double clic qui,suivant l explorateur, ouvre des menus contectuelsou selectionne desparties, ...
  */
}

canvas {
  display: block;
  width: 100%;
}



Select{
  width: 60px;
}
/*
p {

  font-size: 15px;
  color: blue;
  text-align: left;
}
*/
h1 {
  font-size: 30px;
  
   background-image:linear-gradient(grey,white);
  text-align: center;
}



/* FIN ELEMENTS*/

/* LES ID*/
#info{
  font-size: 12px;
  text-align: left;
   
  position: relative;
top: 0px; right: 100px;/*le cÃ´tÃ© gauche est dÃ©calÃ© de 50*/
  
}
/*FIN DES ID*/


.presentation{
 display: none;
}


ul li:hover .presentation{
  display: block;
  
  
}

/* CLASS*/

.liensfred{
  
text-decoration: none;/*pour supprimer le soulognement automatique des liens HTML
color: red;*/
  color:black;
  
}

.liensfred:hover {
  /*hover c est quand on survole avec la souris*/
  color:blue;
}



.message{
  
  font-size: 20px;
  color: green;
  text-align: left;
}

.zonetexte{
  
  border-width:5px;
  
 border-style:ridge;
 border-color:black;
}


.titreinfo{
   font-size: 15px;
  color: blue;
  text-align: left;
}
.blocdetexte {
  display: none;
  /*s cache l element */
  box-shadow: 0px 1px 2px #CCC;
  background-color: white;
  position: absolute;
  width: 300%;
  z-index: 1000;


}

.blocdetexte li {
  float: none;
  width: 100%;
  text-align: left;
}

/*FIN DES CLASS*/


/*MENU DEROULANT*/

/*
https://www.pierre-giraud.com/html-css-apprendre-coder-cours/creation-menu-deroulant/
*/

/*
nav {
  width: 100%;
 margin: 0 auto;
  background-color: white;
  position: sticky;
  top: 0px;
  
}

nav ul {
  list-style-type: none;
}

nav ul li {
  float: left;
  width: 20%;
  text-align: center;
  position: relative;
}

nav ul::after {
  content: "";
  display: table;
  clear: both;
}

nav a {
  display: block;
  
  */
  
  /* affiche */
  
  /*
  text-decoration: none;
  color: black;
  border-bottom: 2px solid transparent;
  padding: 10px 0px;
}
*/


/*
nav a:hover {
  color: orange;
  border-bottom: 2px solid gold;
}

nav>ul li:hover .blocdetexte {
  display: block;
}



nav>ul li:hover .sous {
  display: block;
}

.sous li {
  float: none;
  width: 100%;
  text-align: left;
}

.sous a {
  padding: 10px;
  border-bottom: none;
}
*/
/*
.sous a:hover {
	*/
  /*hover c est quand on survole avec la souris*/
  /*
  border-bottom: none;
  background-color: RGBa(200, 200, 200, 0.1);
}


.sous {
  display: none;
  */
  /*s cache l element */
  /*
  box-shadow: 0px 1px 2px #CCC;
  background-color: white;
  position: absolute;
  width: 150%;
  z-index: 1000;
}

*/







.soussous {
  display: none;
  /*s cache l element */
  box-shadow: 0px 1px 2px #CCC;
  background-color: grey;
  
 /* position: relative;
top: 0px; left: 250px;/*le cÃ´tÃ© gauche est dÃ©calÃ© de 50*/
/* margin    : -26px 0 0 181.2px ; 
 /* position: absolute;*/
  width: 70%;
  z-index: 1000;
   
}

nav>ul li ul li:hover .soussous {
  display: block;
  
}

/*after : ajoute un pseudo element apres a dans deroulant*/
/*
.deroulant>a::after {
  
  content: "â–¼";
  font-size: 12px;
}*/


/*FIN MENU DEROULANT*/


/*BOUTONS*/




.BoutonTresGrand{
  width: 120px;
}

.BoutonGrand{
  width: 60px;
}


.BoutonPetit{
  width: 30px;
}


.boutonHTML {
  width: 100px;
}
/*FIN BOUTONS*/


