nav {
    display: flex;
    align-items: center;
    height: 10vh;
    padding: 0 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
    margin-left: auto;
}
#register a {
    color: #f5f5f5;
    background-color: #985f27;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}
#register a:hover {
    background-color: #7a4a23;
}
#header-link a {
    position: relative;
    text-decoration: none;
}
#header-link a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #985f27;
    transition: all .3s ease-in-out;
}
#header-link a:hover::after {
    width: 100%;
}
#profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-session {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}