*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}
body{
    background-color: black;
}
.parentNav{
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    background-color: black;
}
.nav{
    margin-top: 5px;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: fixed;
    margin: auto;
}
.navLogo{
    height: 70px;
    flex-basis: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navlinks{
    height: 50px;
    flex-basis: 40%;
    display: flex;
    justify-content: start;
    gap: 5%;
    align-items: center;

}
.navsearch{
    flex-basis: 30%;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}
.NavbarLinks{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.navSearchParent{
    height: 35px;
    width: 70%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
}
.inputNav{
    width: 85%;
    padding: 5px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 14px;
    color: white;
    transition: 0.3s;
}

.navSearchParent:hover{
    border: 1px solid white;
    box-sizing:content-box;
}
.NavbarLinks:hover{
    transition: 0.3s;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: white;
    text-decoration-skip-ink: auto;
}
.userParent{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border: 1px solid white;
}
.iconUser{
    color: white;
    font-size: 20px;
}
.lorem{
    color: white;
}