body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
            background: url('images/khaled-ali.jpg') no-repeat center center fixed;
            background-size: cover;
            font-family: Arial, sans-serif;
            color: #D2B48C;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Conteneur pour les liens */
        .link-container {
            position: absolute;
            top: 150px; /* Ajustez cette valeur pour définir la distance voulue par rapport au haut */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; /* Espace entre les liens */
            z-index: 10;
        }

        /* Style des liens avec effet chrome */
        .chrome-text {
            font-size: 3em;
            font-weight: bold;
            color: transparent;
            background: linear-gradient(90deg, #e0e0e0, #a0a0a0, #f0f0f0, #a0a0a0, #e0e0e0);
            background-clip: text;
            -webkit-background-clip: text;
            text-decoration: none;
            text-shadow:
                1px 1px 2px rgba(0, 0, 0, 0.6),
                -1px -1px 2px rgba(255, 255, 255, 0.6),
                0px 5px 8px rgba(0, 0, 0, 0.3);
        }

        .chrome-text:hover {
            color: #427de3;
        }

        /* Phrase en bas de page */
        .footer-text {
            font-size: 1.2em;
            color: #D2B48C;
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
        }

        /* Canvas pour l'effet de particules */
        canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
