@charset "utf-8";

html {
/* desactive zoom si horiz */
    text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
        -moz-text-size-adjust: none;
    font-size: 100%;
}
body { 
    background-color: lavender;
    color: #222;
    font-family: system-ui, sans-serif;
    font-weight: 300;
    font-stretch: condensed;
    text-wrap: pretty;
    line-height: 1.2;
}
* { 
    margin:0; 
    padding:0; 
    overflow: hidden;
}


.divcover {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10;
}
.imgcoverbleu {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
    transform: scale(1.25);
    animation: fonblu 3s ease forwards;
    animation-delay: 1s;
    }
    @keyframes fonblu {
      0% {transform: scale(1.25);}
    100% {transform: scale(1.0);}
}

.divlogo {
    height: 100vh;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100vw;
    z-index: 100;
}
.logo {
    margin: 10vh 0 0 0;
    height: auto;
    width: 30%;
}
.txt-big {
  font-family: 'Bodoni 72', serif;
  font-weight: 400;
  font-style: normal;

    font-size: 1.6rem;
    color: #432;
}
.txt-petit {
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 20px 0 20px;
}
.img-flags {
    height: auto;
    margin: 10px;
    width: 30px;
}
.version {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}



/* PHONE PADS VERTIC ____________________ */

@media screen and (orientation: portrait) {
.logo {
    width: 60%;
    margin: 15vh 0 5vh 0;
}
}


/* XL */

@media screen and (min-width: 1024px) {
html {
    font-size: 110%;
}
body {
    font-stretch: normal;
    font-weight: 200;
    line-height: 1.4;
}
.logo {
    width: 36%;
    margin: 10vh 0 2vh 0;
}
.img-flags {
    width: 40px;
    margin: 20px;
}
.version {
    display: block;
}
}

/* XXL */

@media screen and (min-width: 1400px) {
html {
    font-size: 125%;
}
body {
    line-height: 1.6;
}
.img-flags {
    width: 50px;
}
}




