@charset "utf-8";

/* CRITIC */



html {
/* desactive zoom si horiz */
    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: #333;
    font-family: system-ui, sans-serif;
    font-stretch: condensed;
    text-wrap: pretty;
}

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

a {
    color: #0000CD;
    cursor: pointer;
    font-weight: 300;
    text-decoration: none;
    }
    a:hover {
    cursor: pointer;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    }

    button:hover {
    animation: bounce 0.2s 2;
    }

    @keyframes bounce {
    0%, 100% {transform: translateY(0);}
    50% {transform: translateY(-8px);}
}

figcaption {
    font-size: 1rem;
    font-style: italic;
    line-height: 2;
    text-align: center;
}

header, nav, section, aside, footer {
    padding-top: 20px;
    position: relative;
    z-index: 100;
}

h1, h2, h3, .txt-big {
    color: #531;
    font-family: 'Bodoni MT', 'Bodoni 72', 'Goudy Old Style', 'Big Caslon', Baskerville, serif;
    font-weight: normal;
    line-height: 1.2;
    padding-bottom: 10px;
}

h1, h2 {
    font-size: 1.8rem;
}

h2 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 12px;
}

h3 {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0 50px 10px 50px;
}

p {
    padding-bottom: 0;
}



/* COVER ____________________________ */

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

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

.imgcoververt {
    animation: fonv 20s linear infinite;
    animation-delay: 1s;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    position: absolute;
    width: 100%;
    }

    @keyframes fonv {
      0% {opacity: 0;}
      4% {opacity: 0;}
      8% {opacity: 1;}
     54% {opacity: 1;}
     58% {opacity: 0;}
    100% {opacity: 0;}
}



/* LOGO ___________________________ */

.divlogo {
    position: relative;     
    top: 0;
    left: 0;
    height: 100vh;
    text-align: center;
    right: 0;
    z-index: 100;
}

.logo {
    height: auto;
    margin: 0 0 10px 0;
    max-width: 500px;
    width: 30%;
}

.divhead {
    bottom: 0;
    height: auto;
    left: 0;
    position: absolute;
    padding: 10px;
    right: 0;
}

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

.txt-big {
    font-size: 1.4rem;
}

.txt-petit {
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.2;
}

.img-icones {
    height: auto;
    margin-bottom: 10px;
    width: 32px;
}



/* MENU TOP LEFT ______________________ */

.divtop {
    height: auto;
    left: 10px;
    position: fixed;
    top: 25px;
    width: auto;
    z-index: 150;
}

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






/* PHONE PADS VERTIC ____________________ */

@media screen and (orientation: portrait) {

.logo {
    margin: 0 0 10px 0;
    width: 65%;
}

}



/* XL ____________________________________ */

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

html {
    font-size: 110%;
}

body {
    font-stretch: normal;
}

h3 {
    margin: 0 15% 10px 15%;
}

.logo {
    margin: 40px 0 50px 0;
}

.divhead {
    padding: 24px 15% 40px 15%;
}

}


