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

html, body {
  height: 100%;
  font-size: 1rem !important;
}

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;
}

/* Image singlePost */
.img-fluid {
  max-width: 100% !important;
  height: auto !important;
}

/**
* CARDS
*/
img.card-img-top {
    height: 15vw !important;
    object-fit: cover;
}

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

/* Footer */
h4.fw-bold {
  font-size: calc(1.275rem + .3vw) ! IMPORTANT;
}

