:root {
    --primary-color: rgb(169, 5, 5);
    --sombre-primary-color: rgb(121, 3, 3);
    --secondary-color: #000000;
    --accent-color: #ffffff;
    --background-dark: rgba(0, 0, 0, 0.5);
}

*{
    font-family: 'Inria Sans', sans-serif;
    font-style: normal;
    transition: all .4s;   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    /* font-family: var(--font-family); */
    color: var(--accent-color);
    line-height: 1.6;
}