@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-regular.woff2') format('woff2');
    font-weight: normal;
}

:root {
    --transition-speed: 1.2s;
    --nav-speed: 0.6s;
}

body, html {
    margin: 0; padding: 0; width: 100%; min-height: 100%;
    font-family: 'Geomanist', sans-serif;
    /* C'est ici que se joue la fluidité du fond */
    transition: background-color var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    overflow-x: hidden;
}