.header_index {
    position: relative;
    margin-top: 100px
    width: 100vh;
    height: 40vh;
    background-image: url('/static/images/bannerr.jpg');
    background-size: cover; /* Pour couvrir tout le conteneur */
    background-position: center; /* Pour centrer l'image */
    background-repeat: no-repeat; /* Pour éviter la répétition de l'image */
  }
  
  .header_index::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 50px;
  }

  .header-content h1 {
    color: #fff;
    font-weight: 900;
    font-size: 3em;
  }
  .header-content p {
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
  }
  