.tess {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* permet aux éléments de s'étendre sur plusieurs lignes */
}

.flex-container {
  column-gap: 15px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.space-between {
  display: flex;
  justify-content: center;
}

.col {
  justify-content: center;
  width: calc(50% - 20px);
  flex: 0.1 0 auto;
}

.card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  column-gap: 20px;
  box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
}

.card img {
  display: flex;
  height: 100px;
  border-radius: 15px;
}

.img-placeholder {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
}

.body footer {
  display: flex;
  position: relative;
}

.titleco {
  display: flex;
  justify-content: center;
  font-size: 200%;
}

.soustitle {
  display: flex;
  justify-content: center;
  font-size: 150%;
  margin-bottom: 100px;
}

/* styles généraux */
.table {
  margin: 10px 0;
  width: 100%;
  /* pour remplir la largeur de la fenêtre */
  border-collapse: collapse;
  height: auto;
  /* pour ajouter de l'espace en haut et en bas */
}

.table-head-cell,
.table-cell {
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 15px;
}


/* styles de l'en-tête */
.table-head {
  background-color: #0077c9;
  color: white;
}

/* styles des lignes impaires */
.table-cell:nth-of-type(odd) {
  background-color: #f2f2f2;
}

/* styles des lignes paires */
.table-cell:nth-of-type(even) {
  background-color: #ffffff;
}

/* style de la première colonne*/
.table-cell:first-child {
  width: 30%;
}

.test {
  border-radius: 2em;
  width: 70%;
  /* pour remplir la largeur de la fenêtre */
  margin: 30px 0;
  padding: 10px;
  background-color: #fff;
  box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  /* pour centrer horizontalement */
  width: 80%;
  /* pour fixer la largeur */
  margin-bottom: 10%;

}

  /* styles pour les écrans de moins de 600px de large */
@media (max-width: 600px){
.table-head-cell{
  font-size: small;
}
}
@media (max-width: 450px) {
  .table-head-cell {
    font-size: 9px;
  }

}