nav {
    background-color: rgb(6, 6, 69);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 125px;
}

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;
}

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

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

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