/* VERSION MOBILE */
body {
    background-color: rgb(200, 197, 197);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    background-color: #b9b3b3;
    color: white; /* Couleur du texte en blanc */
}

th {
    background-color: #eeb422;
}

/* VERSION PC et TABLETTE */
@media screen and (min-width: 481px) {
    body {
        background-color: lightseagreen;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
        background-color: #b9b3b3;
    }

    th {
        background-color: blue;
    }
}

footer {
    min-height: 100%;
    position: block;
    color: white; /* Couleur du texte du footer en blanc */
}
.image-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
  }
  
  .image-container img {
    width: 30%; /* Ajustez la largeur des images selon vos besoins */
    height: auto;
  }
  h1{
    color: white;
  }
  h2{

  }
  h3{

  }

  /*FOOTER*/
  :root {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: sans-serif;
    }
    body {
      height: 100vh;
      overflow: hidden;
    }
    .footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: rgb(224, 122, 12);
      color: white;
      font-weight: 500;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.2rem;
    }
  