.sidebar {
    position: sticky;
    top: 2rem;
    padding: 2rem;
    height: calc(100vh - 4rem);
    background-color: var(--color1);
    border-radius: 1rem;
    border: 2px solid var(--color3);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar a {
    text-decoration: none;
}

.sidebar h1 {
    font: bold 1.6rem Arial;
    color: var(--color4);

    &:hover {
        text-decoration: underline;
    }
}

#path {
    flex-shrink: 0;
    background-color: var(--color3);
    width: 100%;
    overflow-x: auto;
    border-radius: .5rem;
    padding: .75rem;
}

#path > h2 {
    font: bold 1.2rem monospace;
    text-wrap: nowrap;
    color: var(--color4);
}