header {
    display: flex;
    align-items: flex-start;
    align-items: center;
}

header nav {
    flex-grow: 1;
    width: 100%;
    overflow-x: scroll;
}


header nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    /* flex-wrap: wrap;  */
    justify-content: space-between;
    padding-left: 70px;
    padding-right: 200px;
}

header nav ul a {
    font-size: 20px;
    text-decoration: none;
    color: black;
    font-weight: 800;
    letter-spacing: 1px;
}

.loupe {
    padding-right: 40px;
}


@media (max-width: 375px) {
    header nav ul a {
        font-size: 15px;
    }
}

