/* RESET
**********************************************************************************************************************/
/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Marges */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}

/* Typographie de base */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
}

/* Listes */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Liens */
a {
    text-decoration: none;
    color: inherit;
}

/* Images */
img, picture, svg {
    max-width: 100%;
    display: block;
}

/* Formulaires */
input, button, textarea, select {
    font: inherit;
}

/* Tableaux */
table {
    border-collapse: collapse;
    border-spacing: 0;
}