/* === RESET - Normaliser les styles par défaut du navigateur === */

/* Reset des marges et padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

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

li {
    list-style: none;
}

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

/*a:active, a:visited {
    color: inherit;
}*/

/* Boutons */
button,
input[type="button"],
input[type="submit"] {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

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

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Titres */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Paragraphes */
p {
    margin: 0;
}

/* Formulaires */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    padding: 0;
    margin: 0;
}

/* Code */
code,
pre {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
}