#desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;

    height: 100vh;

    position: fixed; 
    right: 90px;
    font-size: 22px;
}

#desktop-nav hr {
    width: 100%;
}

.navigation-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

#desktop-nav hr {
    margin: 0;
    border: 0px solid transparent;
    border-top: 1px solid black;
}

#desktop-nav .nav-link-active {
    font-weight: 600; 
    color: var(--color-secondary);
}

#desktop-nav a {
    text-decoration: none;
    font-weight: 300;
    color: black;
    
    transition: font-weight .3s ease, color .3s ease, transform .3s ease;
}

#desktop-nav a:hover {
    font-weight: 600;
    color: var(--color-secondary);
    transform: translateX(-5px);
}

#desktop-nav a:active {
    transform: scale(98%);
}

#desktop-nav .social-icons {
    opacity: 0;
    height: 0px;
    
    transition: opacity .2s ease, height .2s ease;
}

#desktop-nav .social-icons.shown {
    opacity: 1;
    height: 25px;
}