    /* Tomas Crovetto, 17.01.25, Page d'accueil */
    /* style.css */

    body {
        /* Image de fond */
        background-image: url('./../image/image_index_fond.jpg');
        /* Remplace 'ton-image.jpg' par le chemin de ton image */

        /* Propriétés de l'image de fond */
        background-size: cover;
        /* L'image couvre tout l'écran */
        background-position: center;
        /* Centrer l'image */

        /* Couleur de fond sombre */
        background-color: #464646;
        /* Couleur de secours si l'image ne se charge pas */

        /* Si tu veux un effet plus sombre avec l'image, tu peux utiliser une superposition */
        background-blend-mode: darken;
        color: rgb(173, 171, 171);
        /* Pour que le texte soit lisible sur fond sombre */

        margin: 0;
        height: 100vh;
        /* Pour que le fond couvre tout l'écran */
    }

    h1 {
        text-align: center;
        font-size: 50px;
        font-family: "911porschav3";
        margin-top: 100px;
    }

    /* intro.css */

   

    /* Styles de base pour les boutons */
   
    @font-face {
        font-family: '911Porschav3';
        src: url('./../font_family/911porschav3.ttf'), url('./../font_family/911porschav3.ttf') format('truetype'), url('.ttfs') format('.ttfs');
        font-weight: 40px;
        font-style: 40px;
    }