@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');



/*--- HEADER---*/
header {
  text-align: center;
 /* margin: 20px;*/

}

header p {
  font-size: xxx-large;
  font-weight: bold;
  margin-right: 150px;
 
}

.logo {
  height: 150px;
  float: left;
  border-radius: 25%;
  margin-right: 20px;
}


/* police header*/
.italic {
  font-family: 'Pacifico', cursive;
  text-transform: capitalize;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}


/*pour se connecter*/
.cadenas{
  position: absolute;
	top: 5px;
	/**left:95%;**/
  right: 3%;;
height: 20px;

}

.cadenas:hover{
  rotate: 25deg;
  rotate: 0.75turn;

}
/*--- FIN HEADER---*/


.container {
  background-image: url('../data/deco/background.jpg');
  background-size: cover;
 background-repeat: no-repeat;
  background-attachment: fixed;
}



/**** NAVBAR ****/

* {
  padding: 0;
  margin: 0;
  color: #432;
}

li {
  list-style: none;
  vertical-align: middle;
  text-align: center;
  padding-left: 15px;
}

a,
a:visited {
  text-decoration: none;
  text-transform: lowercase;
}

a:hover {
  color: white;
  min-width: 120px;
  background-color: rgb(107, 84, 61);
  /*font-size: 120%;*/
  box-shadow: inset 20px 0 0 0 #ff4000;
  border-radius: 10px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0);
  text-transform: capitalize;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: calc(0.5rem + 1.5vw);
}

nav ul {
  display: flex;
  justify-content: space-between;
  /*width: 60%;*/
}

#icons {
  cursor: pointer;
  display: none;
}

@media (max-width: 650px) {
  #icons {
    display: block;
  }

  #icons:before {
    content: "\2630";
  }

  .active #icons:before {
    content: "\2715";
  }

  nav ul {
    position: fixed;
    left: -100%;
    top: 5%;
    flex-direction: column;
    background: skyblue;
    width: 100%;
    text-align: center;
    transition: 0.25s;
    z-index: 5;
  }

  nav li {
    padding: 3px 0;
  }

  nav li:hover {
    background: rgb(157, 217, 240);
  }

  nav.active ul {
    left: 0;
  }
}

/*logo facebook */
.minilogo {
  height: 20px;
  float: center;
}
/**** NAVBAR   FIN ****/



/* SECTION CENTRALE */
.resp-container {
   display: flex;
  position: relative;
  /*overflow: hidden;*/
  padding-top: 110%;
  justify-content: space-between;

/*blanc bas de page*/
  height: 170px;


}

.iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resp-iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* fin section centrale */




/* les post du blog */
.container-post {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  display: inline-block;
}

.post {
  background-color: rgb(214, 178, 142);
  text-align: center;
  width: 200px;
  height: 320px;
  justify-content: center;
  margin: 1rem;
  overflow-wrap: break-word;
  border-radius: 10px;
  box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
  padding: 5px;
  overflow: hidden;
}

.post:hover{
  background-color:rgb(146, 120, 94);
  transition: 0.50s;
}

.post img {
  width: 150px;
  height: 150px;
  padding: 5px;
}
/* FIN les post du blog */



/* media queries sur le header et sur le logo facebook*/
/*--- HEADER---*/

@media (max-width: 650px) {
  .logo {
    display: none;
  }

  header {
    text-align: center;
    /*margin: 20px;*/
  }

  header p {
    font-size: xx-large;
    font-weight: bold;
   /* margin-right: 150px;*/
   text-align: center;
  }

/*pb du blanc bas de page sur mobile*/

/*fin pb du blanc bas de page sur mobile*/

}

/*--- FIN HEADER---*/