.navbar {
    width: 100%;
    margin: auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--skin-color);
    background: rgb(23, 28, 29, 0.85);
    position: fixed;
    top: 0;
    z-index: 1;
}

.nav-logo{
    color: var(--text-color);
    font-size: xx-large;
    cursor: pointer;
    text-decoration: none;
}

.nav-item {
    list-style: none;
    display: inline-block;
    margin-left: 5rem;
}

.nav-link {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: bold;
    list-style: none;
    display: inline-block;
    margin-left: 5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    height: 3px;
    width: 0;
    background: var(--skin-color);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 500ms;
}

.nav-link:hover::after {
    width: 100%;
}