/*@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;700&display=swap');
*/
@font-face {
  font-family: "Bitter";
  src: url(template/css/fonts/Bitter-Variable.ttf);
}

body{
    color: #000;
    background-color: #ffffff;
}

/* MENU */


nav{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 5;

    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /*x y blur color*/
}

nav div {
    display: flex;
    align-items: center;
    padding-top: 25px;
}



nav a#selectionne{
  color: rgba(75, 200, 17, 1);
}

nav .a-menu {
    padding-top: 5px;
    text-decoration: none;
    color: #000000;
    font-family: "Bitter";
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.15vmin;
    line-height: 1rem;
}

nav div#menuleft, nav img{
    padding: 10px 0 0 75px;
    height: 55px;
}

nav div#menuright{
    position: fixed;
    top:0;
    right: 0;
    padding-right: 30px;
}

nav img, nav a, nav p{
    padding-right: 50px;
    cursor: pointer; /*pour que la souris se transforme en main en passant sur les images de flèches*/
}

nav div a:hover, #fullmenu a:hover{
    color: #56D360;
    transition: 0.5s;
    text-decoration: none;
}

#menu-small, #fullmenu{
    display: none;
}

@media screen and (max-width: 800px) {

  nav #menuleft img{
    padding: 0;

  }

  nav #menuright{
      display: none;
  }

  nav div #menu-small{
      display: block;
      justify-content: right;
      align-items: center;
      padding-top: 0;
      width: 40px;
  }

  nav #logo{
      padding-left: 0px;
  }


  /*ce qui apparait au clic du menu*/

  #fullmenu{
      position:fixed;
      top: 50%;
      left: 50%; /*le point en haut à gauche du bloc est centré*/
      transform: translate(-50%, -50%); /*on déplace de 50% de sa largeur, et de 50% de sa hauteur*/
      width: 100vh;
      height: 100vh;

      z-index: 1;

      background-color: #ffffff;
      opacity: 0; /*JS ici*/
      transition: 0.5s; /*ne marche plus*/

      display: none; /*JS ici*/
      justify-content: center;
      align-items: center;
  }

  #fullmenu img{
    padding-left: 50px;
    padding-bottom: 100px;
  }

  #fullmenu ul li{
      list-style-type: none;
      padding: 0 0 40px 0;
      text-align: center;
  }

  #fullmenu a{
      text-decoration: none;
      color: #000000;
      font-family: "Bitter";
      font-size: 30px;
  }
}

/*FOOTER*/

footer{
  padding: 50px 50px 20px 50px;
  background-color:#00a814;
  background-color:#ffffff;
  background-image: radial-gradient(at 0% 0%, hsla(114,100%,80%,1) 0, transparent 64%), radial-gradient(at 100% 97%, hsla(113,72%,42%,1) 0, transparent 75%), radial-gradient(at 0% 60%, hsla(101,100%,36%,1) 0, transparent 51%), radial-gradient(at 69% 71%, hsla(68,100%,78%,1) 0, transparent 83%), radial-gradient(at 0% 97%, hsla(108,100%,30%,1) 0, transparent 53%), radial-gradient(at 61% 20%, hsla(122,99%,29%,1) 0, transparent 84%);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 100%;
}

footer div{
  padding: 20px;
}

footer img{
  width: 150px;
}

footer p, footer li, footer a{
  list-style-type: none;
  color: white;
}

footer .webd{
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  footer{
    display: block;
  }
}
