@charset "utf-8";

html {
    font-size: 100%;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
}

body {
    background-color: lavender;
    color: #222;
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    font-stretch: condensed;
    font-weight: 300;
    text-wrap: pretty;
}

* {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}

header {
    align-content: top;
    height: 100vh;
    position: relative;
    text-align: center;
    z-index: 100;
}

h1, h2, h3 {
    color: #040;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    padding: 0 45px 20px 45px;
}

h2, h3 {
    font-size: 1.6rem;
    padding: 0 16% 20px 16%;
    text-wrap: balance;
}

p {
    padding: 0 16% 60px 16%;
}

a {
    color: #00b;
    text-decoration: none;
}


/* COVER FOND ____________________________ */

.divcover {
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 10;
}

.imgcover {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    width: 100%;
}


/* COULEUR BLOCS _______________________________ */

.fondflou {
    background-color: #fff6;
    backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
}



/* MENUS TOP ET BAS __________________________ */

.divtopgauche {
    filter: saturate(0);
    height: auto;
    left: 5px;
    position: fixed;
    top: 10px;
    width: auto;
    z-index: 150;
}

.divtopdroit {
    height: auto;
    position: absolute;
    right: 10px;
    top: 10px;
    width: auto;
    z-index: 151;
}

.divbas {
    line-height: 1.2;
    height: auto;
    position: absolute;
    bottom: 0;
    padding: 10px;
    left: 0;
    right: 0;
    text-align: center;
    text-wrap: balance;
    z-index: 100;
}



/* IMG_________________________________ */

.logo {
    height: auto;
    width: 25%;
    margin-top: 5vh;
}

.img-icones {
    height: auto;
    width: 35px;
}



/* AUTRES ____________________________________ */

.visibleyesno {
    display: none;
}



/* PHONE PADS VERTIC ____________________ */

@media screen and (orientation: portrait) {

.logo {
    width: 60%;
}

.visibleyesno {
    display: inline-block;
}

}



/* XL ____________________________________ */

@media screen and (min-width: 961px) {

@font-face {
    font-family: 'ViaodaLibre';
    src: url('../font/ViaodaLibre-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 110%;
}

body {
    font-stretch: normal;
    font-weight: 200;
}

header {
    align-content: center;
}

h1, h2, h3 {
    font-family: 'ViaodaLibre', 'Bodoni 72', 'Bodoni 72 Oldstyle', 'Noto Serif Display', serif;
}

.logo {
    margin-top: 0;
}

.visibleyesno {
    display: inline-block;
}

}



/* XXL ____________________________________ */

@media screen and (min-width: 1441px) {

html {
    font-size: 120%;
}

}



