/* Réinitialisation des marges et définition d’un box-sizing commun */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
/* Pour garantir que le body occupe toute la hauteur de la fenêtre */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    }
main {
    margin: 8px;
}
body {
    /* font-family: Arial, Helvetica, "Liberation Sans", FreeSans, sans-serif; */
    font-family: 'Quicksand', sans-serif;
    font-weight: normal; font-stretch: normal; font-style: normal;
    font-size: 16px; color:#52527D;
    background-color: white;
}