/* The Spazi Styles */
#spazi {
    background    : var(--dark);
    color         : var(--light);
    counter-reset : sidebar;
}
#spazi .sidebar-navigation-item {
    counter-increment: sidebar;
    padding-left : 2rem;
}
#spazi .sidebar-navigation-item::before {
    content : counter(sidebar);
    width : 1rem;
    height : 1rem;
    position : absolute;
    top : 0.25rem;
    bottom : 0.25rem;
    left : 0.25rem;
    display: flex;
    justify-content: center;
    background: black;
    border-radius : 50%;
    color : white;
    font : var(--sans-s);
    align-items: center;
    font-weight: 500;


}