* {
    user-select: none;
}

body {
    height: 100vh;
    width: 100vw;
    background:
        radial-gradient(at 50% 120%,
            rgb(var(--primary-dark)), 5vh,
            rgb(var(--background-dark)));
}

.main {
    position: relative;
    width: 100dvw;
    height: 100dvh;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: end;
}

.sidebar {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: 10px;
    padding: 0 15px;
}

.corner-sidebar {
    display: flex;
    align-items: end;
    margin: 0 3px;
    flex-grow: 0.1;
}

.item:hover {
    box-shadow: 0 0 15px 1px rgb(var(--primary-mid));
}

.item {
    width: 36px;
    height: 36px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    border: 1px solid transparent;
    background: rgba(var(--primary-mid));
    box-shadow: 0 0 15px 1px rgb(var(--background-light));
    pointer-events: all;
    margin: 3.5px;
    margin-bottom: 7px;
    white-space: nowrap;
    transition: 0.15s ease;
    cursor: pointer;
    z-index: 3;
}

.item i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 18px;
}

.noscript {
    position: absolute;
    z-index: 999999;
    height: 100%;
    width: 100%;
    background-color: white;
    color: black;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

#underlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -999;
}

#loader {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(var(--background-dark),0.80);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
}