html, body {
  min-height: 100vh;
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

img {
  display: block;
  margin: auto;
  width: 50%;       /* Réduction à 50% de la largeur du parent */
  height: auto;     /* Conserve les proportions */
}


.text {
  margin-top: 20px;
  font-size: 24px;
}
