
* {
    padding: 0;
    margin: 0;
    transition: var(--transition-1) ease-in-out;
    color: var(--font-white);
    font-size: var(--fs-14);
}

*::selection {
    background: var(--white);
    color: var(--font-black);
}

/* Dire au navigateur d'utiliser le jeu de couleurs "light" par défaut */
html {
    color-scheme: light; /* indique au UA qu'on veut la palette light par défaut */
    -webkit-print-color-adjust: exact;
    color-adjust: exact;           /* préserve les couleurs sur certains UAs */
    forced-color-adjust: none;     /* tente d'empêcher les forced colors (haut-contraste) */
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    overflow: hidden;
    background-color: var(--black);
}

body:has(.card:focus) .card {
    filter: grayscale(80%);
    opacity: 0.5;
}

body:has(.card:focus) .card:focus {
    filter: none;
    opacity: 1;
}


a {
    text-decoration: none;
    cursor: pointer !important;
}

button {
    background: none;
    border: none;
}

h1 {
    font-size: var(--ffs-18);
    font-weight: 700;
}

h2 {
    font-size: var(--ffs-16);
    font-weight: 600;
}

h3 {
    font-size: var(--ffs-14);
    font-weight: 500;
}

h4 {
    font-weight: 500;
}

h5, h6 {
    font-weight: 400;
}

img {
    display: block;
}

ul {
    list-style-type: none;
}

svg {
    stroke-width: 2;
    stroke: var(--font-white);
}

/* inter-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../../fonts/inter-v20-latin/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/inter-v20-latin/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    src: url('../../fonts/inter-v20-latin/inter-v20-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../../fonts/inter-v20-latin/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../../fonts/inter-v20-latin/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../../fonts/inter-v20-latin/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
