
@import url("/assets/css/global/responsiveText.css");
@import url("/assets/css/global/wireframe.css");
/* Réinitialisation de base */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps du document */
body {
    width: 100vw;
    min-height: 100vh;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #d9d9d9;
    color: #343434;
}

/* Suppression des puces sur les listes */
ul,
ol {
    list-style: none;
}

/* Liens */
a {
    text-decoration: none;
    color: #343434;
}

a:hover {
    color: #141414;
}

/* Boutons */
button {
    all: unset;
    cursor: pointer;
}

/* (Facultatif) Ajout d’un comportement de scroll fluide */
html {
    scroll-behavior: smooth;
}
