

                          /*Dernières modif Aout2024*/
.titre
{
    margin-top: 0;
    position: relative;
    color:blue;
    font-weight: bold;
    font-size: 20mm; 
   /* font-size:clamp ( 12px, 1vw+5px,25px); */     
    text-align: center;
}
.bandeau
{
    margin-top: 0px;
   height: 251px;  
    max-width: 100%; /*modif aout 2024* ok*/
}
.acceuil
{
    margin-top: 5px;
    margin-bottom: 5px;
}
@media screen and (min-width:360px) and (max-width:800px)
{
    .titre
    {       
        font-size: clamp(1rem, 2vw + 1rem, 2rem);/*modifaout2024 ok*/
    }
    .bandeau
    {
        display: inline;/*2 lignes modifiées aout 2024 ok*/
        max-width: 100%;
    }
}
/*tablettes 7/10 pouces*/
@media  screen
and (min-device-width : 801px)
and (max-device-width : 1024px)
and (orientation : landscape) 
{
.titre
    {
        font-size: 15mm; /*actuellement aout2024*/       
    }
    .bandeau
    {
        display: inline;
        max-width: 100%;/*modif aout 2024 ok*/
    }

}