
nav {
    display: flex;
    padding: .5% 5%;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    height: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
}

.left-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.left-nav button {
    padding: 4px 20px 4px 10px;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 100vw;
    background: var(--main-clr);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.left-nav button span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
}