/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
    .FormSearchBar{
        margin-left: 50px;
        margin-right: 50px;
    }

    .bg-ligth{
        margin-bottom: 20px;
    }
    
    body {
    font-size: 14px;
  }

  .menu {
    display: block;  /* changer l'affichage du menu */
  }

  .container {
    padding: 10px;
    display: block;
  }
}


/* Pour les petits écrans (mobiles) */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }

  .header {
    text-align: center;
  }

  .menu {
    text-align: center;
  }
  .container {
    padding: 10px;
    display: block;
  }
}