body {
    background-color: black; /* Le fond de la page sera noir */
    color: white; /* Le texte de la page sera blanc */
}
div {
    display: flex;
    justify-content: center;
    /* align horizontal */
    align-items: center;
    /* align vertical */
}
img {
  width: 600px;
  position: absolute;
  top: 40%;
  transform: translate(0%, -50%);
}