/*
Theme Name: Twenty Twenty-Five (enfant)
Description: Thème enfant pour Twenty Twenty-Five
Author: Jonathan BESSON
Author URI: https://www.jonathan-besson.fr/
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfivechild
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/*
/!\ NE PAS EFFACER LES LIGNES CI-DESSUS. /!\

ELLES SONT OBLIGATOIRES POUR LE FONCTIONNEMENT DU THEME ENFANT.
VOUS POUVEZ AJOUTER DES INFORMATIONS SUPPLEMENTAIRES SI VOUS LE SOUHAITEZ.

Pensez à modifier les informations suivantes : 
* Author : votre nom ou pseudo
* Author URI : l'URL de votre site web ou portfolio
*/

/*
TRES IMPORTANT :
    LES LIGNES QUI SUIVENT SONT UN EXEMPLE DE STRUCTURATION DE CODE CSS.
    PENSEZ A ADAPTER SELON VOS BESOINS ET VOTRE ORGANISATION OU SUPPRIMEZ-LES SI VOUS NE SOUHAITEZ PAS LES UTILISER.
*/

/* 
SI vous souhaitez organiser votre code CSS en plusieurs fichiers, vous pouvez utiliser la règle @import.
L'import doit toujours être en début de fichier, avant le code CSS.

Un dossier nommé _partials contient les fichiers CSS séparés pour organiser au mieux son code CSS. EX ici : _variables.css
Vous pouvez reproduire cette structure ou l'adapter selon vos besoins ou la supprimer si vous ne souhaitez pas l'utiliser.
*/
/* @import url(./_partials/_variables.css); */

/* Déclaration de vos variables CSS */
:root :where(body) {
    --wp--preset--color--base: #f5f5f5;
}

/*
    Ecrivez votre code CSS ci-dessous.
*/
/* Import des Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    /* usage d'une variable CSS */
     background-color: pink;

    /* usage des Google font */
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}
