body {
    background-color: var(--surface);
    color: var(--on-surface);
}

.pageFrame {
    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}


.sidebar {
    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    z-index: 50;

    overflow: hidden;

    display: none;
}

.sidebar.visible {
    display: flex;
}

.sidebarFrame {
    position: absolute;
    top: 0px;
    right: -60%;

    width: 60%;
    height: 100%;

    background-color: var(--container-low);
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s cubic-bezier(0.34, 0.8, 0.34, 1.00);
}

.sidebarFrame.visible {
    right: 0px;
}

.sidebarOverlay {
    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background-color: var(--shadow);
    opacity: 0;

    z-index: 1;

    transition: all 0.5s cubic-bezier(0.34, 0.8, 0.34, 1.00);
}

.sidebarOverlay.visible {
    opacity: 0.75;
}

.sidebarLinks {
    position: relative;

    width: 100%;
    height: auto;

    padding: 40px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.sbLink {
    position: relative;

    width: 100%;
    height: auto;

    padding: 15px;
    box-sizing: border-box;

    background-color: var(--container-high);
    border-radius: 10px;

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.sbLIcon {
    position: relative;

    width: 30px;
    height: 30px;

    fill: var(--primary);
}

.sbLText {
    position: relative;

    font-family: "Archivo";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);
}