/*                                                                            */
/*                        LIAISON DES POLICES D'ECRITURES                     */
/*                                                                            */

/* Permet la liaison des polices d'écriture avec CSS */

@font-face {
    font-family: "Robot_Condensed";
    src: url("../Fonts/RobotoCondensed-Regular.ttf") format("woff2"),
        url("../Fonts/RobotoCondensed-Regular.ttf") format("woff");

}

@font-face {
    font-family: "Squada";
    src: url("../Fonts/SquadaOne-Regular.ttf") format("woff2"),
        url("../Fonts/SquadaOne-Regular.ttf") format("woff");
}

@font-face {
    font-family: "Lato";
    src: url("../Fonts/Lato-Regular.ttf") format("woff2"),
        url("../Fonts/Lato-Regular.ttf") format("woff");
}

/*                                              */
/*                      ALL                     */
/*                                              */

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Lato', sans-serif;
}

/*                                                    */
/*                      SCROLLBAR                     */
/*                                                    */

/* Réglage des paramètres de la scrollbar */

::-webkit-scrollbar {
    width: 0.4vw;
}

::-webkit-scrollbar-track {
    background: #c3c3c3;
}

::-webkit-scrollbar-thumb {
    background: #1cb7cf;
}

::-webkit-scrollbar-thumb:hover {
    background: #227f8e;
}