*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    color: #1c1c1c;
}
    @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

    .container {
        width: 80%;
        margin: 0 auto;
        text-align: left;
        padding: 20px;
    }
    .header{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    h1 {
        font-size: 36px;
        color: #1c1c1c;
        margin-top: 50px;
        margin-bottom: 50px;
        text-align: center;
        transition: color 0.3s ease; /* Transition de couleur au survol */
    }
    
    h1:hover {
        color: #2b8add; /* Changement de couleur au survol */
    }
    
    h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: color 0.3s ease; /* Transition de couleur au survol */
    }
    
    h2:hover {
        color: #2b8add; /* Changement de couleur au survol */
    }
    
    p {
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 30px;
        text-align: justify;
        line-height: 30px;
    }
    
    pre {
        font-size: 16px;
        color: #333;
        background-color: #f9f9f9;
        padding: 10px;
        border-radius: 5px;
        overflow-x: auto; /* Activer le défilement horizontal si nécessaire */
    }
    img{
        height: 300px;
        width: 50%;
        object-fit: contain;
    }
    .accordion {
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
      }
    .panel {
        display: none;
        padding: 10px 0;
      }
.pic{
    border: 1px solid;
    background-image: url('../images/assembleur.jpg');
    }