@font-face {
    font-family: 'Quicksand';
    src: url('fonts/Quicksand/static/Quicksand-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Style de base pour la carte et la barre de chronologie */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fff;
    color: #212121;
    display: flex;
    flex-direction: column;
    font-family: 'Quicksand', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}
