/*
* @author    Alexandre Curria <alexandrecurria@gmail.com>
*/

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

/* Marges et paddings à 0 */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dd, ol, ul, figure, hr, fieldset, legend {
    padding: 0;
}

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

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

/* Formulaires */
button, input, select, textarea {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

/* Textes */
body {
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    color: var(--color-text);
    background-color: var(--color-background);
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--heading-weight);
}

/* Liens */
a {
    text-decoration: none;
    color: var(--color-link);
}

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

/* Quotes */
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
    content: "";
    content: none;
}

/* Horizontal rule */
hr {
    border: 0;
    height: 0;
    margin: 0;
    padding: 0;
}
