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

html, body {
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
}
main{
  flex-grow: 1;
}

.text-justify {
  /*Bootstrap ne le gère plus donc j'ai justifié le texte ici dans le css*/
  text-align: justify;
  /* Gère les espaces quand le texte est justifié */
  text-justify: inter-word;
  /* Forcer la coupe d'un mot trop long */
  word-break: break-word;
}

/**
* CARDS
*/
img.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

/* RESPONSIVE */
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  img.card-img-top {
    height: 50%;
  }
}








   