nav {
    /* background-color: rgb(185, 182, 182); */
    background-color: #AB51E3;
    box-shadow: 5px 5px 5px 0px #9f69c0;
    position: fixed;
    top: 10px;
    height: 75px;
    width: 80%;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
}

nav ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style-type: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.75em;

}

nav ul li a:hover {
    color: red;
}

.before {
    display: none;
}


















/* #labelJS {
    display: none;
    cursor: pointer;
}

#labelJS img {
    width: 50px;
}

@media screen and (max-width: 1000px) {
    nav {
        justify-content: space-between;
        padding: 0 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        display: none;
        width: auto;
        padding-inline-start: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    #labelJS {
        display: block;
    }
}

@media screen and (min-width: 1000px) {
    #labelJS {
        display: none;
    }

    nav ul {
        display: flex;
    }
} */