body {
   background-color: rgb(3, 3, 3); /*Mettre une couleur de fond*/
  }

.titre{
  background-color: #0EE83B;
  text-align:center;
  border: dashed palegreen ;
  border-width: 2px;
  }



@font-face {                  /* Tout ce qui se situe dans font-face permet d'importer et définir une font personnalisé*/
    font-family : Garabosse;
    src: url(font/Garabosse-Perle.ttf);
}


body {
  background-image: url('img/rizome.png'); /*Mettre un image en fond d'écran*/
  background-size : 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgb(3, 3, 3); /*Mettre une couleur de fond*/
  font-family: Garabosse , sans-serif; /* appeller la font du texte*/
  cursor: url("img/wasp.png"), pointer; /* ! Super cool ! Permet de personnaliser le curseur* l'image doit être de */
}

h1 {
  color: #FFCCFF; /* orange */
  -webkit-text-stroke: 1px palegreen;  /* Contour en rouge */
  text-align: center;
}
h2{
    text-align: center;
}


p {
  font-size: 18px;
  line-height: 1.6;
}

a {                       /* Personnalise un lien*/
  color: black;
  text-decoration:dotted;
  
}


a:hover {  /* hover permet de changer l'apparence d'un élément en le survolant avec la souris*/
  color: deeppink;
}

img {
  /*display:inherit;*/
  width: 10%;
  margin: auto;}

/* Class*/
.zonetext {
background-color: hotpink;
}
.zonetext2 {
background-color: #ff69b4;
color: green;

}

.lien {
  display: flex;
  align-items: center;
  justify-content: center;

}

.jeu {
  display: flex;
	justify-content: center;
	align-items: center;
  border-radius: 10px;
}
audio {
display: block;
background-color: hotpink;
margin: 5px auto;
width: 100%;
}


/* =================================== prochain cours */

.bloc:hover {
  background-color: #ff69b4;
  transform: scale(1.05);
  transition: 0.3s;
}
.conteneur {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.bloc {
  background-color: #ffb6c1;
  padding: 20px;
  border-radius: 8px;
  justify-content: space-around;
  justify-content: center;
	align-items: center;
	text-align :center;

  
}

dialog {
 
  border: none;
  border-radius: 10px;
  padding: 20px;
  background: #fff0f5;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.titre2 {
  background: linear-gradient(45deg, #a7c7e7, #fbc4ab);
  padding: 20px;
  padding-bottom: 20px;
  border-radius: 20px;
  border: dashed palegreen ;
  border-width: 2px;
  text-align: center;
  font-size: 20px;
  transition: background 0.5s;
}

.titre:hover {
  background: linear-gradient(45deg, #ffb3c6, #ffc6ff);
}




