html, body {
	margin: 0;
	padding: 0;
	height: 100%;
  font-family: "Capriola", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
}

.body-content {
  flex: 1;
}

/* Petits écrans (mobiles) */
@media (max-width: 768px) {
  .portrait > img {
    max-width: 70%;
  }
  .flex-dir-column {
    flex-direction: column;
  }
}

/* Grands écrans (desktop) */
@media (min-width: 1024px) {
  .portrait > img {
    max-width: 50%;
  }
}
