
/* modification - un bon endroit pour charger les corrections CSS dans toutes les pages */
@import url('/css/corrections.css');

header {
    width: 95%;
    height: 12vh;
    font-size: 0.9em;
    margin-left: auto;
    margin-right: auto;
}

#logonav {
    display: flex;
    height: 95%;
}

#logo {
    display: flex;
    /* l'overflow pour éviter qu'avec le scale de l'img, cette dernière couvre sournoisement les "nav a". J'ai testé et pesté !! */
    overflow: hidden;
    width: 15%;
    height: 90%;
}

#logo img {
    width: 99%;
    height: 99%;
    object-fit: contain;
    scale: 1;
}

nav {
    display: flex;
    width: 60%;
    align-items: flex-end;
}

a {
    text-decoration: none;
    color: #5A5A58;
    margin-bottom: 5px;
    margin-right: 5px;
}

#whoami {
    display: flex;
    width: 25%;
    justify-content: flex-end;
    align-items: flex-end;
}

.horline {
    height: 1px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #BD212F;
}

@media screen and (max-width:808px) {
    header {
        font-size: 0.65em;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        width: 45%;
    }
    #whoami {
        width: 35%;
    }
}