body{
    margin: 0px;
    padding: 0;
    border: 0;
    font-family: 'Nunito sans', sans-serif;
}
h1, h2, h3, li{
  font-family: 'Montserrat',sans-serif;
}
html{
    scroll-behavior:smooth;
}
/****************************************************************Barre de Navigation********************************************************************/

.navbar {
  display: flex;
  justify-content:space-evenly;
  align-items: center;
  padding: 10px 20px;
  background-color: #8eb4a8;
  position: sticky;
  top: 0;
  z-index: 1000;

}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;

}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.burger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

section{
  scroll-margin-top: 80px;
}

/********************************************************************** Responsive Burger ********************************************************/
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #8eb4a8;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }
  
}

/*********************************************************************Première partie *******************************************************/
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #00644A ;
    background-image: url(../image/carte-france.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70vh;
    height: 80vh;
    text-align: center;
    position: relative;
    padding: 20px;
}

.logDis{
    position: static;
    max-width: 90%;
    max-height: auto;
}

.actDis{
    color: rgb(255, 255, 255);
    font-size: 1.2rem;;
    position: static;
    width: 100%;
}

/*********************************************************************Separation en vert pale**************************************************/

.separation{
    width: 100%;
    height: 50px;
    background-color: #8EB4A8;
    margin:0px;
    
}
/*Mention Légale*/
.mention{
    text-align: center;
}

/***********************************************************Millieux de page*********************************************************************************/

h3{
  color: #00644A;
}




/***********************************************************Bas de Page**************************************************************************************/

.menale{
  background-color: #00644A;
  border: 0;
  display: flex;
  justify-content:space-evenly; 
  color: white;
  padding: 5vh 0;
  text-align: center;
}
.lepage {
  color: white;
  text-decoration: none;
}
.lepage:hover{
  color: #777777 ;
}
.lepage::after{
  color: #777777;
}



/**********************************************************Animation******************************************************************/
.animlogo{
  position: relative;
      left: -300px; /* position de départ (hors écran à gauche) */
      animation: glisseDroite 2s ease-out forwards;
    }
@keyframes glisseDroite {
      to {
        left: 0; /* position finale */
      }
    }

