  /* Configuration Générale */
    body {
        background-color: #0f111a;
        color: #e6e6e6;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        margin:40px;
        line-height: 1.6;
    }
    
    

    /* Le lien de retour en haut */
    a[href="../tableau.php"] {
        color: #3C35FC;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 20px;
        transition: 0.3s;
    }

    a[href="../tableau.php"]:hover {
        
        color: rgb(255, 220, 46);
    }

    /* Ta liste de boutons de Blocs (en haut) */
    ul {
        display:flex;
        flex-direction: column;
        width: 100%;
        column-gap: 10px;
        padding: 0;
        list-style: none;
    }

    /* Style de TOUS tes boutons */
    button {
        background-color: transparent;
        border: none;
        color: white;
        min-width: auto;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: left;
    }

    button:hover {
        color: green;
        transform: translateY(-2px);
    }

    /* La section principale */
    section {
        margin-top: 40px;
        border-left: 3px solid #3C35FC;
        padding-left: 25px;
    }

    /* Titres */
    h1 {
        font-size: 1.8rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    h2 {
        color: #3C35FC;
        font-size: 1.3rem;
        margin-top: 30px;
    }

    h3 {
        color: #adb5bd;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 5px;
    }

    /* Articles (Compétences) */
    article {
        background: rgba(255, 255, 255, 0.02);
        padding: 20px;
        border-radius: 10px;
        margin: 20px 0;
    }

    /* Tes lignes de séparation */
    hr {
        border: 0;
        height: 1px;
        background: linear-gradient(to right, #3C35FC, transparent);
        margin: 50px 0;
    }

    /* Conteneur des boutons de chaque compétence */
    article div {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: 500px;
        
        border-radius: 8px;
        margin-top: 15px;
        
    }
    

    /* Responsive */
    @media (max-width: 768px) {
        ul, article div {
            flex-direction: column;
        }
        button {
            width: 100%;
        }
        body{
            padding: 0%;
        }
        img {
            height: auto;
        }
    }