/***** Font - Line-height - REM *****/
/***** 
Font-size   : 62.5% -> 12px = 1.2rem
Line-height : font-size: 16px; line-height: 1.5; = 16*1.5 = 24 pour le line-height
 *****/
html { font-size: 62.5%;}

/***** variable *****/
:root {
  --fontBody: "Source Sans 3";
  --fontTitre: "linotype-didot";
  --fontSousTitre: "linotype-didot";
  --colorBody: #000000;
  --colorBodyLink: #7f6149;
  --colorBodyLinkHover: #000000;
  --colorBodySousTitre: #000000;
  --marginBloc: 100px auto;     
}

@media (max-width:1000px) {
    :root {
          --marginBloc: 80px auto;
        }
    }

@media (max-width:800px) {
        :root {
          --marginBloc: 60px auto;
        }
    }

@media (max-width:500px) {
        :root {
          --marginBloc: 30px auto;
        }
    }