/* *** smartphone portrait 480px; tablette portrait / smartphone paysage 960;  *** */
/* *** prendre en charge la HAUTEUR du aside - pas de overflow possible !! *** */


/* ****** règles générales ****** */
* {margin: 0; padding: 0; font-size: 100%;}

html {
  height: 100%;
  width: 100%;
  background: transparent;
  overflow: auto;
}

body {
  min-height: 100%;
  width: 100%;
  font-family: Calibri, sans-serif;
}

a:link {
    text-decoration: none;
}
a:active {
    text-decoration: color:#000;
}
a:visited {
    text-decoration: color:#000;
}


/* ****** conteneur principal pour centrage et largeur ****** */
#conteneur_primaire_centre {
    background-color: transparent;
    max-width: 1120px;
    margin: 0 auto;
}


/* ****** header + logo_titres + logo + titres ****** */
#fixed_un-quart {
    background-color: transparent;
    width: 25%;
    margin: 0 auto;
    position: fixed;
    z-index: +1;
    height: 12em;
    right: 0;
}

.logo_titres {
    display: flex;
    flex-direction: column;
    padding: 10px 20% 0 0;
}

.logo {
    max-width: 90px;
    padding: 0 0 8px 0;
}

.logo img {
    width: 80%;
}

h1 {
    font-size: 1.25em;
}
h2 {
    font-size: 1em;
    font-style: italic;
    font-weight: 200;
}


/* ****** idem (header + logo_titres + logo + titres) avec règles ****** */
@media all and (max-width: 800px) {
    #fixed_un-quart {
        width: 100%;
        z-index: +1;
        position: fixed;
        height: 60px;
        left: 0;
    }
    .logo_titres {
        display: flex;
        flex-direction: row;
        padding: 0;
    }
    .logo {
    padding: 5px 0 0 5px;
    }
     .logo img {
        width: 60%;
     }
    .logo_titres h1 {
        position: fixed;
        right: 0;
        font-size: 1.1em;
        padding: 10px 20px 0 10px;
        /*background-color: white;*/
    }
    .logo_titres h2 {
        display: none;
    }
}

/* ****** le conteneur principal pour la grille d'index et les images/textes des pages courantes ****** */
#conteneur_trois-quart {
    background-color: transparent;
    width: 75%;
    padding: 12em 0;
}

figure {
    padding-bottom: 20px;
    margin-bottom: 10px;
}

figure img, figure video {
    width: 100%;
}

.oracle {
    font-size: 5em;
    font-family: serif;
    overflow-wrap: break-word;
    background-color: silver;
    padding: .5em;
}

figcaption {
    display: flex;bouchons et lampes
    flex-direction: row;
    font-size: 1em;
    justify-content: space-between;
    align-items: baseline;
}


/* **** sert aux images superposées (bouchons et lampes) **** */
#invisible {
    display: none;
}

@media (max-width: 650px) {
    #conteneur_trois-quart {
        width: 100%;
        padding: 55px 0 0 0;
    }
    .image {
        padding: 0;
    }
    figcaption {
        font-size: 1.1em;
        padding: 0;
    }
    .article {
        font-size: 1.1em;
        padding: 0 5px;
        margin-bottom: 1em;
    }
    #invisible {
        display: block;
    }
}

/* ***** le ASIDE pour les infos et le cartel ***** */

#aside_un-quart {
    background-color: transparent;
    position: fixed;
    top: 12em;
    right: 0;
    width: 25%;
}

h3 {
    font-weight: bold;
    font-size: 1em;
}

h4 {
    font-weight: normal;
    font-size: 1em;
}

.infos {
    padding-right: 20%;
}
.alinea {
    padding: 10px 0 10px 20px;
    font-style: italic;
    font-size: 0.9em;
    overflow-wrap: break-word;
}

/*
#mail {
    border: black 0.5em;
}
*/

@media (max-width: 650px) {
    #aside_un-quart {
        position: static;
        width: 100%;
        min-width: 200px;
        padding: 15px 6px;
        margin-top: 20px;
    }
}






