nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;;
}
nav> :nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
}
nav> :nth-child(1)> a {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    gap: 8px;
}
nav> :nth-child(1)> a> .bi {
    font-size: 28px;
    color: black;
}
nav> :nth-child(1)> a> span {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

nav> :nth-child(1)> :nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;;
}
nav> :nth-child(1)> :nth-child(2)> ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}
nav> :nth-child(1)> :nth-child(2)> ul> li {
    display: flex;
    align-items: center;
    justify-content: center;
}
nav> :nth-child(1)> :nth-child(2)> ul> li> a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}