#left-sidebar {
    float: left;
    position: fixed;
    top: 13vh;
    left: 2vw;
    height: 80vh;
    display: block;
    background-color: var(--primary-bg-color) !important;
    box-shadow: 0 0 0 2px var(--bg-color), 0 0 0 3px var(--primary-bg-color);
    border-radius: 6vh;
}

#left-sidebar-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6vh 1.8vw;
    height: inherit;
}

#left-sidebar-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
}

.sidebar-border {
    border: 1px solid rgba(255, 255, 255, 0.616);
    border-radius: 100%;
    width: 10vw;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
}

.sidebar-list li a {
    color: white !important;
    font-size: calc(0.45vw + 0.45vh + 0.45vmin);
}