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

/* default page css for all the pages except home page */
@charset "utf-8";
@import "common.css";


section {
    text-align: justify;
    padding-top: 1rem;
}

section > h1 {
    padding: 0.5rem 2.5rem;
    background-color: var(--block-h-bg);
    
    border-style: solid;
    border-radius: 0.5rem;
    width: fit-content;
    width: -moz-fit-content; /* Firefox needs a prefix to fit-content */
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

h1#inscription{
    border-style: none;
}

section > h2, section > h3 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

ul.logo-list {
    display:flex;
    flex-flow:row wrap;
}

li.logo-item {
    display:flex; /* control the items' content */
    justify-content:center; /* horizontally */
    align-items:center; /* vertically */
    width: 100%;
    height:200px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

li.logo-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
}

@media screen and (min-width: 768px) {
    section > * {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
    }
}
