/* -------------------------------- Global Content -------------------------------- */

body {
    background-color: #0A0F1F;
}

/* -------------------------------- Header -------------------------------- */ 

.nom-raccourci {
    display: none;
}

nav { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    background-color: #E4F6E2;
    padding: 1rem;
    border-radius: 2rem;
    margin-top: 1.5%;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.navbar {
    width: 20%;
    background-color: #0A0F1F;
    padding: 1%;
    border-radius: 10em;
}

nav ul li img {
    height: 24px;

}

nav a {
    text-decoration: none;
    color: black;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 24px;
}

.name-rac {
    display: none;
}

.name {
    display: block;
}



@media (max-width: 1000px) {

    .signature {
        display: none;
    }

    .name-rac {
        display: flex;
    }

    .name {
        display: none;
    }

    nav {
        display: flex;
        margin: 1em auto;
    }

    .navbar {
        width: 70vw;
    }

    nav ul li{
        padding: 5px 20px;
    }

    nav a {
        font-size: 18px;
    }

}
