/* 
* Created on 27/01/2020  16:07
* Author Lingjing Giraud
*/

/* default page css for all the pages except home page */

@charset "utf-8";

iframe {
    display: block;
    width: 80%;
    height: 25vh;
    margin: 0 auto;
}
h1, h2, h3 {
    color: var(--block-bg-yellow);
}

h1, h2 {
    position: relative;
    text-align: center;
    padding: 2rem;
}

section  *:not(:figure) {
    padding: 2rem !important;
}

section > div {
    text-align: justify;
}

section > div  img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
}

/* add collapse icon*/
h2.folded:after {
    position: absolute;
    font-family: "FontAwesome";
    content: '\f0d9';
    right: 10%;
    color: var(--block-bg-yellow);
    font-size-adjust: 2rem;
}

h2.expanded:after {
    position: absolute;
    font-family: "FontAwesome";
    content: '\f0d7';
    right: 10%;
    color: var(--block-bg-yellow);
    font-size-adjust: 2rem;
}

h2.expanded:hover, h2.folded:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* For screen > 768 grid: md */
@media screen and (min-width: 768px) {
    iframe {
        width: 50%;
        height: 50vh;
    }

    section > * {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
    }
}

.guide{
    color: rgb(56, 56, 134);
    font-style: italic;
    font-weight: bold;
    font-size: 1rem;
}