/* =========================================================
   CERFBOX - BASE / RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-white);
    color: var(--color-black);

    font-family: var(--font-text);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

button {
    font: inherit;
}

.page {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background: var(--color-white);

    overflow-x: hidden;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--font-title);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3,
h4 {
    font-family: var(--font-text);
}

/*
 * Les tailles des H3 / H4 sont principalement définies
 * dans leurs sections respectives.
 *
 * On conserve ici une valeur par défaut pour éviter
 * les styles natifs du navigateur.
 */
h3,
h4 {
    font-size: var(--font-size-h3);
}

p,
li {
    font-family: var(--font-text);
    font-size: var(--font-size-text);
}