html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.center {
    display: flex;
    align-items: center;      /* Centre verticalement */
    justify-content: center;  /* Centre horizontalement */
    height: 100%;            /* 100% de la hauteur de la fenêtre */
    text-align: center;
    flex-direction: column;   /* Si tu ajoutes d'autres éléments */
}
