* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

* {
    box-sizing: border-box;
    font-weight: normal;
  }

 
  .banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #050505;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .banner nav ul {
    list-style: none;
    display: flex;
  }
  
  .banner nav ul li {
    margin-right: 20px;
  }
  
  .banner nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  
  .banner nav ul li a:hover {
    color: #ff00a2;
  }


  .card-container {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3em;
  }

  .card-container1 {
    margin-top: 40px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .card {
    flex: 0 0 calc(50% - 20px); /* Ajustez ici pour 2 cartes par ligne */
    margin: 10px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .card-img {
    width: 100%;
    height: 310px;
    object-fit: cover;
  }
  
  .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }


  p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  h1 {
    font-size: 2.5rem;
    text-decoration:underline;
    margin-bottom: 10px;
  }

  h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color:lightseagreen;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-decoration: overline;
  }

  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px;
    text-align: center;
    z-index: 3;
  }
  
