/*--- HEADER ---*/
header {
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(5px); /* Flou */
    border-bottom: 1px solid var(--grey2-color);
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10; 
}

.header-logo {
    font-size: 24px;
    font-family: 'Yeseva One', serif;
    color: var(--blue-color);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
}

.header-logo .me {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    margin: 0 .45rem 0 0;
}

.header-logo .green {
    color: var(--green-color);
}

.header-reseaux {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-reseaux a {
    display: block;
    margin: 0 3px;
}

.header-reseaux a:hover {
    color: var(--green-color)
}

.header-reseaux i {
    font-size: 20px;
}

.bx.bxl-behance {
    font-size: 23px;
}

.header-reseaux a.mode {
    margin: 0 0 0 10px;
}


/*--- RESPONSIVE  ---*/
@media (min-width: 800px) {
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .header-logo {
        margin: 0 0 0 30px;
    }

    .header-reseaux {
        margin: 0 30px 0 0;
    }
}
