body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('../img/background.jpg');
    /* Remplacez 'background-image.jpg' par le chemin de votre image de fond */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.bandeau {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    /* Prend toute la largeur de la page */
    display: flex;
    /* Utilise le modèle flexbox pour aligner les éléments */
    justify-content: space-between;
    /* Espace entre les deux div */
    border-bottom: 5px solid;
    border-color: brown;
    /* padding: 0px 5px; */
}


.bandeau_gauche {
    /* border: 1px solid blue; */
    padding-left: 10px;
    padding-right: 5px;
    /* flex: 1; */
    /* Prendra autant d'espace que possible tout en respectant la marge à droite */
}

.bandeau_droite {
    text-align: right;
    /* border: 1px solid black; */
    padding-left: 5px;
    padding-right: 10px;
    /* flex: 0; */
    /* Prend seulement l'espace nécessaire */
}

.bandeau p {
    margin: 5px;
    font-size: 18px;
}

main {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    /* Centrage du contenu */
    padding: 20px;
    padding-top: 5px;
    width: 80%;
    /* max-width: 400px; */
    margin: 50px 3px 3px 3px;
}

h1,
h2 {
    color: brown;
    margin-bottom: 20px;
}

.container p {
    /* color: #666; */
    margin-bottom: 30px;
    text-align: justify;
}

.DT_small {
    font-size: 0.7rem;
}

footer {
    position: fixed;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.75);
    width: 100%;
    padding: 0px auto;
    padding-left: 30%;
    /* display: flex; */
    /* Utilise le modèle flexbox pour aligner les éléments */
    /* justify-content: space-between; */
    /* Espace entre les deux div */
    border-top: 2px solid;
    border-color: brown;
    align-items: center;

}

footer p {
    color: #666;
    padding: 0px;

    margin: 0px;
    font-size: 0.8rem;
    text-align: center;
}

/*  texte barré en rouge */
.R {
    position: relative;
    font-weight: bold;
}

.R:before {
    border-bottom: 2px solid rgba(255, 0, 0, 0.6);
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
}

del {
    text-decoration: none;
    position: relative;
    /* background-color: #fbb; */
    /* color: #555; */
    font-weight: bold;
}

del:before {
    border-bottom: 2px solid rgba(255, 0, 0, 0.6);
    position: absolute;
    content: "";
    width: 100%;
    height: 56%;
}

ins {
    text-decoration: none;
    /* background-color: #d4fcbc; */
    font-weight: bold;
    color: darkgreen;
}