    :root {
        --fond: #f4f4f4;
        --primaire: #005577;
        --texte: #000;
        --bouton: #007799;
        --marge: 0.5rem;
        --rayon: 8px;
    }

    body {
        margin: 0;
        font-family: sans-serif;
        background-color: var(--fond);
        color: var(--texte);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    header,
    footer {
        background-color: var(--primaire);
        color: white;
        padding: var(--marge);
        text-align: center;
    }

    main {
        flex: 1;
        padding: var(--marge);
        max-width: 800px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    input,
    button,
    canvas,
    video,
    progress {
        display: block;
        width: 100%;
        margin: var(--marge) 0;
    }

    button {
        background-color: var(--bouton);
        color: white;
        border: none;
        padding: 0.5rem;
        border-radius: var(--rayon);
        cursor: pointer;
    }

    canvas {
        border: 1px solid var(--primaire);
        border-radius: var(--rayon);
        max-width: 100%;
    }

    img {
        max-width: 100%;
        margin-bottom: 1rem;
        border-radius: var(--rayon);
    }

    footer a {
        color: white;
    }

    #aperçuImages {
        display: none;
        margin-top: var(--marge);
    }

    legend {
        font-weight: bold
    }