@media (max-width: 810px) {
  #menu, #general {
    display:flex;
    flex-direction: column;
    gap: 10px;
  }
  .title {
    font-size: 1.2rem;
  }
  .subtitle {
    display: none;
  }
  nav {
    display: none;
  }
  .accueil a {
    display: block;
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    background: #006699; /* Couleur de fond */
    color: #fff; /* Couleur du texte */
    font-size: 20px;
    line-height: 1.8;
    width: 200px;
  } 
}
@media screen and (min-width: 810px) and (max-width: 1280px) {
  #accueil {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
  }
  #gauche, #centre, #droite {
    width: 32%;
    height: auto;
    margin-bottom: 0px;
  }
  #menu {
    width: 100%;
    flex-wrap: wrap;
    font-size: 14px;
  }
  .Tab_accueil {
    width: 90%;
    font-size: 0.9rem;
  }
}
