body{
  background-color: #f3f4f6;
}

/*css banniere accueil*/

.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(31, 41, 55, 0.3); /* gris avec opacité */
  }

  .content {
    position: relative;
    text-align: center;
    color: white;
    margin-top: 100px; /* Décalage pour plus d'espace */
  }

  .content h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
  }

  .content p {
    font-size: 1rem;
  }

  @media (min-width: 768px) {
    .content h1 {
      font-size: 3rem;
    }

    .content p {
      font-size: 1.25rem;
    }
  }


  /*css cartes accueil*/

  .cards-container {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap; /* Permet d'empiler les cartes si nécessaire */
  }

  .card {
    flex: 1;
    height: 200px;
    background-color: #1f2937;
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 250px; /* Largeur minimale des cartes */
  }

  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column; /* Les cartes s'empilent en colonne */
      gap: 16px;
    }
  }
  
  div#copy {
    display:block;
    z-index:1000;
    position:absolute;
    left:10px;
    bottom: 5px;
    color:whitesmoke;
  }