/***** Font - Line-height - REM (Règles)
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: "Poppins";
  --colorBody: #15142a;
  --colorBodyLink: #e60f76;
  --colorBodyLinkHover: #e60f76;
  --color-1 : #e60f76; /* Fushia */
  --marginBloc: 100px auto;     
}

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

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

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

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