
nav {
    border-right: 1px solid #D3D3D3;
    min-width: var(--nav-width);
    height: 100vh;
    background-color: white;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

nav img {
    margin-bottom: 1.5rem;
    height: 3rem;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 1.5rem;
    flex-grow: 1;
}

nav li {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 0.5rem;
    cursor: pointer;
}

nav .line {
    border-top: 1px solid #D3D3D3;
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    transform: scaleX(1.2);
}

nav a {
    color: var(--nav-color);
    text-decoration: none;
}

nav a:hover {
    color: var(--text-color);
}

nav .active {
    background-color: #f2f2f2;
    border-radius: 10px;
    position: relative;
    left: -0.6em;
    padding: 0.6em;
}

@media (max-width:780px){
    nav {
        position: fixed;
        width: 100vw;
        display: none;
        padding-top: 4rem;
    }
    nav.show {
        display: inline-flex;
    }
}
