nav {
    background-color: rgb(6, 6, 69);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 25vh;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 25px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    text-decoration: none;
    color: lavender;
    font-size: 1.02rem;
}

.left {
    font-size: 2rem;
    justify-content: left;
}

.menuButton {
    background: none;
    border: none;
    display: none;
}

.noneDisplay {
    display: none;
}

.fullDisplay {
    background-color: rgb(6, 6, 69);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.fullDisplay a {
    text-decoration: none;
    color: white;
    margin-bottom: 10vh;
    margin-left: 5vw;
    font-size: large;
}



@media screen and (max-width: 1000px) {
    nav{
        /* background-color: red; */
        display:flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .left {
        font-size: 2rem;
        justify-content: center;
        /* content: 'KP'; */
        /* background-color: red; */
    }

    .menuButton {
        display: flex;
    }

    .navLinks {
        display: none;
    }

    .menuButton:focus .hiddenMenu{
        display: flex;
        flex-direction: column;
    }
}

/* .logoLeft img{
    width: 5vw;
    height: 5vw;
} */

/* @media screen and (max-width: 1000px) {
    nav {
        width: 123vw;
    }
} */
