header {
    position: fixed;
    /*background: linear-gradient(#ffffff, #ffffff97, #ffffff36, #ffffff00);
    background: white;*/
    border-radius: 15px;
    backdrop-filter: blur(50px) brightness(120%);
    width: 100%;
    border-radius: 0 0 25px 25px;
    box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

header .wrap{
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /*gap: 100px;*/

    font-family: 'CodeProBlack';
}

.header-logo {
    height: 70px;
    width: auto;
}

/*début style nav a*/
nav {
    display: flex;
    gap: 50px;
}
nav a {
    outline: none;
    text-decoration: none;

    transition: all 0.5s;
}
nav a:link {
    color: black;
}
nav a:visited {
    color: black;
}
nav a:hover {
    /*
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-decoration-skip: 5px;
    */
    color: white;
}
/*fin style nav a*/

@media only screen and (max-width: 1440px) {
    nav {
        gap: 20px;
    }
}