
      body {
          font-family: Arial, sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f0f0f0;
          margin-bottom: 100px;
      }

      /*header*/
      header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0px 15px;
          background-color: white;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      header img {
          height: 100px;
          cursor : pointer ;
      }
      header nav a {
        color: rgb(0, 0, 0); 
        text-decoration: none; 
        margin: 0 15px; 
        font-size: 18px; 
        padding: 8px 15px; 
        border-radius: 5px; 
      }
      nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }
    
    nav ul li {
        margin-right: 20px;
    }
    
    nav ul li a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-size: 16px;
    }
    
    nav ul li a:hover {
        color: hsl(198, 58%, 56%); 
    }
/*page d'accueil*/
      .titre {
          color: #4DA8D0;
          font-size: 50px;
          margin-bottom: 10px;
          font-family: "Montserrat";
          text-align: center;
      }
      .sous-titre {
          color: #F7C400;
          font-size: 30px;
          margin-bottom: 10px;
          font-family: "Raleway", cursive;
          text-align: center;
      }
      .encouragement {
        color: #000;
        font-family: cursive;
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-align: center;
      }
      .content {
          color: #8BC34A;
          font-size: 30px;
          line-height: 25px;
          text-align: center; 
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
      }
 /*footer*/
      footer {
        background-color: #ffffff;  
        color: black;  
        text-align: center;
        padding: 20px;
        position: fixed;
        bottom: 0;
        width: 100%;
        
    }
    footer a:hover {
        text-decoration: underline;
    }
  
    
  


    /* mention legale*/


main {
    padding: 15px;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 2px 5px hsl(198, 58%, 56%);
    border-radius: 8px;
    height: 100%;
    text-align: center;
}
    section {
        margin-bottom: 15px;
        text-align: center;
    }
    
    section h2 {
        border-bottom: 1px solid #0056a3;
        padding-bottom: 5px;
        color: #0056a3;
        font-size: 1.5rem;
        text-align: center;
    }

    ul {
        padding-left: 20px;
        text-align: center;
    }
   
    a {
        color: #0056a3;
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    .ms  {
        color : hsl(198, 58%, 56%);
        text-align : center; 
        font-size: 2.5rem;
        font-weight: bold;
        
    
    }
    
    .ts {
        color : hsl(0, 0%, 0%);
        text-align : center; 
        font-size : 15 px ; 
    }

    /* contact */
    .formulaire-contact {
        margin-bottom: 80px;
        text-align: center;
        margin-top: 20px;
        
    }
    
  
    
    button {
        background-color: #43a5fa;
        color: rgb(0, 0, 0);
        padding: 10px 10px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
    }

    /* Articles */
    
    section article{
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    
    
}

/* Style pour les images dans les articles */
article img {
    width: 150px;  /* Définit la largeur de l'image à 40px */
    height: auto; /* Laisse la hauteur automatique pour maintenir le ratio de l'image */
    margin-bottom: 10px; /* Optionnel : ajoute un peu d'espace sous l'image */
}

article {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
   
}

article:hover {
    background-color: #e0f7fa;
    
}

article a {
    
    color: #0056a3;
    font-weight: bold;
    font-size: 1.1rem;
}


    /* Style général de la barre de navigation */
.navbar {
    background-color: 
    #8dc3f3;
    overflow: hidden;
}
.navbar {
    background-color: #b6b6b6;
    overflow: hidden;
    text-align: center; /* Centre les éléments à l'intérieur du navbar */
}

/* Style des éléments de la liste dans la barre de navigation */
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block; /* Assure que la liste est centrée */
}

/* Style de chaque élément de la liste */
.navbar ul li {
    display: inline-block; /* Change inline à inline-block pour un meilleur contrôle */
}

/* Style des liens dans la barre de navigation */
.navbar ul li a {
    display: inline-block;
    padding: 14px 20px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

/* Changement de couleur au survol des liens */
.navbar ul li a:hover {
    background-color: #575757;
    color: #fff;
}
