/* Logo centré dans le pied de page */
.site-footer::before {
  content: "";
  display: block;
  width: 120px; /* taille du logo */
  height: 120px;
  margin: 0 auto 25px auto; /* centre horizontalement */
  background-image: url("https://media.cdnws.com/v3/sites/marise-boutique/files/MB-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}