.navigation {
    width: 100%;
    height: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.nav_btns {
    display: flex;
    gap: 2rem;
}

.nav_btns button {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 3px;
    padding: 0.2rem;
    cursor: pointer;
}

.profile_btn {
    background: linear-gradient(129deg,rgba(102, 30, 197, 1) 2%, rgba(83, 20, 128, 1) 50%);
}

.nav_btns button img {
    width: 100%;
    height: 100%;
}

.nav_btns button img:hover {
    transform: scale(1.1);
}

.add_btn {
    background-color: #555555;
}

.nav_tags {
    display: flex;
    gap: 5rem;
    margin-left: 18rem;
}

.nav_tags li {
    list-style-type: none;
    font-size: 1.6rem;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
}

.Regist_btns {
    display: flex;
    gap: 2rem;
}

.Regist_btns button {
    cursor: pointer;
    width: 9rem;
    height: 3rem;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
}

.logIn {
    border: 1px solid #000;
    background-color: #fff;
    transition: 0.2s;
}

.logIn:hover {
    background-color: #FFD700;
    border: none;

}

.signUp {
    border: none;
    background: #531480;
    /* / */
    color: #fff;
}