            nav {
                font-family: "Futura";
            }
            /* police de mon nav */
            
            /*DEBUT DU MENU*/
            * .menu {
                display: flex;
                padding: 0;
                justify-content: space-around;
                flex-direction: row;
                flex-wrap: wrap;
                font-size: 1.5em;
            }
            /* Menu css avec flexbox */
            
            .menu li {
                list-style-type: none;
            }
            /* liste type none pour qu'il ny ait pas de liste */
            
            * .menu a {
                display: block;
                min-width: 120px;
                margin: 0.5rem;
                padding: 0.8rem;
                text-align: center;
                background-color: #4446adda;
                color: rgb(255, 255, 255);
                text-decoration: none;
                border: 1px solid rgb(0, 0, 0);
                border-radius: 2px;
                transition: all 0.45s;
            }
            /*menu avec couleur d'écriture, bordure, couleur background, les marges et le padding et temps de transition*/
            
            .menu a.actif {
                background-color: #000;
                color: #ffffff;
                border-color: #ffffff;
            }
            /* menu actif de couleur différente avec transition dans le css en dessous */
            
            .menu a:hover,
            .menu a:hover.actif {
                background-color: #000000;
                color: #f7ca04;
                border-color: #f7ca04;
            }
            /*couleur du menu suite à la transition*/
            /*FIN DU MENU*/
            

            /*H1 DEBUT*/
            h1 {
                text-align: center;
                margin-top: 2em;
                font-family: "Futura";
                font-size: 6em;
                color: #4446adda;
                margin-bottom: 3em;
                font-weight: bold;
                overflow: hidden;
                text-align: center;
                /*alignement de mes paragraphes + couleur + taille et les marges*/
            }
            
            h1::before,
            h1::after {
                background-color: rgb(255, 255, 255);
                content: "";
                display: inline-block;
                height: 0.05em;
                position: relative;
                vertical-align: middle;
                width: 1em;
            }
            /*Titre principale avant et après avec la couleur de fond le content, le display, la hauteur position,taille et alignement vertical*/
            
            h1:before {
                right: 0.1em;
                margin-left: -25%;
            }
            /*Propriété du h1 before avec un margin left et right*/
            
            h1:after {
                left: 0.1em;
                margin-right: -25%;
            }
            /*Propriété du h1 after avec un margin right et left*/
            /*H1 FIN*/
            
            .BackgroundIndex {
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-position: center;
                background-size: cover;
                background-image: url(../images/octane.jpg);
                /* photo background positoné au centre et pour qu'on puisse écrire par dessus */
            }
            
            footer {
                border: solid;
                justify-content: space-between;
                background-color: black;
                max-width: 100%;
                color: white;
                line-height: 3em;
                padding: 1em;
                display: flex;
                align-items: center;
            }
            /*Bas de page avec les bordules la justification du contenu la couleur le padding et le display flex*/
            
            footer p {
                font-size: 8pt;
                margin-left: 5pt;
            }
            /* le paragraphe du footer avec sa marge*/
            
            .link {
                text-decoration: none;
                color: blue;
            }
            /* mes liens, avec leur couleur*/
            
            #dateEtHeure {
                color: white;
                margin-left: 15px;
                font-size: 1.5em;
                margin-top: 1em;
                margin-bottom: 2em;
            }
            /*JS de la date et heure. la couleur, la date, les marges*/
            
            .center {
                text-align: center;
                font-size: 2em;
                color: rgb(255, 255, 255);
                font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
                display: block;
                margin: 4em auto;
                padding: 1em;
                text-align: justify;
                width: 80%;
                border: 1px solid white;
            }
            /* mon alignement center avec la taille, la couleur, la police, les marges, le display bloc, les bordures et l'alignement*/
            

            /*FLEXBOX DEBUT*/
            .ligne {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                width: 100%;
                justify-content: center;
            }
            /*FlexBox pour la ligne*/
            
            .ligne .colonne {
                flex: 0 0 33.3333%;
            }
            /*FlexBox pour la ligne et colonne*/
            
            .ligne .colonne .bloc {
                width: auto;
                font-size: 26px;
                padding: 1em;
                margin: 4em auto;
                color: rgb(255, 255, 255);
            }
            /*Flexbox pour ligne colonne et bloc*/
            
            .ligne .colonne .bloc .card {
                border: 1px solid white;
                padding: 1em;
            }
            /* Flexbox pour que mon texte soit entre bordure aligné au milieu et à la suite */
            /*FLEXBOX FIN*/


            @media screen and (max-width: 999px) {
                .menu {
                    display: flex;
                    justify-content: center;
                }
                footer {
                    display: block;
                }
                .link {
                    display: block;
                    text-align: center;
                }
                .logoD8G {
                    display: block;
                    margin: 0 auto;
                }
                .ligne .colonne {
                    flex: 0 0 100%;
                }
                .ligne .colonne .bloc {
                    margin: 1em auto;
                }
                
            }
            /* media queries pour que mon site soit adapté au téléhpone */
            
            .backgroundPresentation {
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-position: center;
                background-size: cover;
                background-image: url(../images/dominus.jpg);
            }
            /* photo background positoné au centre et pour qu'on puisse écrire par dessus */
            
            .backgroundAstuces {
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-position: center;
                background-size: cover;
                background-image: url(../images/breakout.jpg);
            }
            /* photo background positoné au centre et pour qu'on puisse écrire par dessus */
            
            .backgroundChampionnat {
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-position: center;
                background-size: cover;
                background-image: url(../images/rlcs.jpg);
            }
            /* photo background positoné au centre et pour qu'on puisse écrire par dessus */
            
            .backgroundplusbeauxbuts {
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-position: center;
                background-size: cover;
                background-image: url(../images/fennec.jpg);
            }
            /* photo background positoné au centre et pour qu'on puisse écrire par dessus */
            
            .h2center {
                text-align: center;
                font-size: 5em;
                font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
                color: #4446adda;
                margin-left: auto;
                margin-right: auto;
            }
            /* deuxieme titre avec une couleur bleu une police différente une margin et des marges auto */
            
            .article {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                align-items: center;
                gap: 30px;
            }
            /*l'article avec les flexs, l'align itens, et le gap "gouttière" pour définir l'espace entre les lignes*/
            
            .videofullscreen {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 25em;
                border: 2px white solid;
            }
            /* ajout de propriété pour ma video pour qu'elle soit au centre et qu'elle ait une bordure blanche */
            
            .imgRL {
                max-width: 55%;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
            /* modification de la taille de l'image et centrer avec */
            
            .imgrlcs {
                width: 560px;
                height: 810px;
                margin-left: auto;
                margin-right: auto;
                align-items: center;
            }
            /* modification de la taille de l'image et centrer avec */
