/*======================================
Theme Name: Free Divi Child Theme By Kali Design 
Theme URI: https://www.kali-design.fr/
Description: This is a free Divi child theme from Kali Design 
Author: Aurore BACLET (aka Queen K)
Author URI: https://www.kali-design.fr/
Author Email: contact@kali-design.fr
Template: Divi
Version: 4.27.4
======================================*/

*===============================================================================*/
/*commentaire*/

/* Importer sa font sur le serveur */

@font-face{
                        font-family: 'Safiro';
                        src: url('safiro-regular-webfont.eot');
                        src: url('C:\Users\auror\Local Sites\evalu-et-sucession\app\public\wp-content\themes\Divi child them by Kali Design\font\safiro-regular-webfont.eot') format('embedded-opentype'),
                        url('C:\Users\auror\Local Sites\evalu-et-sucession\app\public\wp-content\themes\Divi child them by Kali Design\font\safiro-regular-webfont.woff') format('woff'),
                        url('C:\Users\auror\Local Sites\evalu-et-sucession\app\public\wp-content\themes\Divi child them by Kali Design\font\safiro-regular-webfont.ttf') format('truetype'),
                        }


/*Application des fonts */
body {
    font-family: 'Safiro', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
}

/*Changer la couleur de sélection par defaut*/

::selection{
  color: #232f5e; /*couleur du texte*/
  background-color: #F4DAC9 !important; /*couleur de l'arrière-plan*/

solution 2

/* couleur surlignage texte*/
/* pour Firefox */
::-moz-selection {
 background-color:#F4DAC9 !important;
 color: #232f5e !important;
}
/* pour Safari et Chrome */
::selection {
 background-color:#F4DAC9 !important;
 color: #232f5e !important;
}

