/* CETTE FICHE CONCERNE L'ENSEMBLE DU SITE */

/* ENSEMBLE */

body {
    margin: 0;
    padding: 0;
    font-family: Monaco, monospace;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
    background-color: whitesmoke;
}

.sep {
    margin-bottom: 200px;
}

/* PARTIES PRINCIPALES */

/* header */

header {
    background: linear-gradient(to right, #c3903a, #9e96a5);
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;

    height: 60px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    z-index: 1;
}

.lang_selector {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

header img {
    height: auto;
    max-width: 40px;
}

header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;

    list-style: none;
    text-decoration: underline black;
    text-transform: uppercase;
}

header .nav_reseaux {
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.reseaux {
    gap: 40px;
    align-items: center;
}

.reseaux img {
    width: 60px;
    height: auto;
    transition: all 0.2s ease;
}

.reseaux img:hover {
    filter: brightness(1.3);
}

/* bannière */

.banner {
    display: flex;
    justify-content: center;
    background-image: url("../images/app/banner-6549d86690ea668338f3469e91ecb426.png");
    background-size: cover;
    height: 300px;
}

.banner h1 {
    text-transform: uppercase;
    color: white;
    font-size: 5em;
    margin-top: 0;
    margin-bottom: 0;
}

/* footer */

footer {
    background: linear-gradient(to right, #c3903a, #9e96a5);
    font-size: smaller;
    text-decoration: underline;
    text-align: center;
    color: black;

    padding-top: 20px;
    padding-bottom: 20px;

    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* AUTRES */

/* liens */

a {
    text-decoration: none;
    color: black;
}

section a, .note {
    color: brown;
}