/* CSS Document */
@media (max-width: 640px) {
    * {
        box-sizing: border-box;
    }
    

    *{
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        
        }

    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
       }

       .titre {
        font-weight: bold;
        font-size: 20px;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }
    /* passer body (et tous les éléments de largeur fixe) en largeur automatique */

    body {
        width: auto;
        touch-action:none;
        margin: 0;
        padding: 0;
        text-align:center;
		background-color: #000042;
        color: rgb(3, 3, 97);
    }

    input {
        color:white;
        background-color:black;
    }
    
    /* fixer une largeur maximale de 100% aux éléments potentiellement problématiques */

    img,
    table,
    td,
    blockquote,
    code,
    pre,
    textarea,
    input,
    iframe,
    object,
    embed,
    video {
        max-width: 100%;

        -webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
word-wrap: break-word;
    }
    
    /* conserver le ratio des images */

    img {
        height: auto;
    }
    
    /* gestion des mots longs */

    textarea,
    table,
    td,
    th,
    code,
    pre,
    samp {
        -webkit-hyphens: auto; /* césure propre */
        -moz-hyphens: auto;
        hyphens: auto;
        word-wrap: break-word; /* passage à la ligne forcé */
    }
    
    code,
    pre,
    samp {
        white-space: pre-wrap; /* passage à la ligne spécifique pour les éléments à châsse fixe */
    }
    
    /* Passer à une seule colonne (à appliquer aux éléments multi-colonnes) */

    .element1,
    .element2 {
        float: none;
        width: auto;
    }
    
    /* masquer/afficher les éléments  */

    .u-mobile {          display: block;          display: revert !important; /* affichage des éléments */        }        .u-no-mobile {          display: none !important; /* masquage des éléments */        }
    
    /* Un message personnalisé */

    body:before {
        display: block;
        text-align: center;
        font-style: italic;
        color: rgb(231, 211, 211);}
}

