/* ==================================================
   ÆKOZ - RESET.CSS
   Reset propre et minimal
   Évite les comportements navigateur incohérents
================================================== */

/* Box sizing universel */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset marges/paddings */
* {
    margin: 0;
    padding: 0;
}

/* Scroll fluide */
html {
    scroll-behavior: smooth;
}

/* Base body */
body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Images responsive */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Inputs héritent de la typo */
input,
button,
textarea,
select {
    font: inherit;
}

/* Boutons */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Liens */
a {
    text-decoration: none;
    color: inherit;
}

/* Listes */
ul,
ol {
    list-style: none;
}
