:root {
    --background-color: #1e1f22;
    --item-color: #303134;
    --white: #f4f4f4;
    --custom-font: "Onest", sans-serif;
    --accent: #bb86fc;
    --right: #569152;
}

body {
    background-color: var(--background-color);
    font-family: var(--custom-font);
    user-select: none;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 700px;
    /* border: 1px solid white; */
}

p, i, .item {
    color: var(--white);
}

p {
    font-size: xx-large;
}

.core {
    display: flex;
    gap: 0.6em;
}

.item {
    font-size: 28px;
    font-weight: bold;
    padding: 1em;
    max-height: 1em;
    max-width: 1em;
    text-align: center;
    background-color: var(--item-color);
    border: 3px solid grey;
    border-radius: 8px;
    transition: transform 0.25s ease;
}

.item:hover {
    cursor: grab;
    transform: scale(1.05);
}

/* .item:active {
    cursor: grabbing;
    transform: scale(1);
    opacity: 0.3;
} */

.divider {
    background-color: transparent;
    border: none;
    width: 2em;
}

.shuffle {
    transition: transform 0.25s ease;
    background-color: var(--accent);
    border: none;
    border-radius: 18px;
    padding: 1em;
    max-height: 3.2rem;
    margin: 2.5em 0 7em 0;
}

.shuffle:hover {
    cursor: pointer;
}

.shuffle:active {
    transform: scale(1.02);
    background-color: var(--accent);
    filter: brightness(0.9);
}

i {
    visibility: hidden;
}

.bottom-heading {
    background-color: aqua;
    text-align: center;
    width: 100%;
    height: 2em;
    position: fixed;
    bottom: 0;
}

h4 {
    margin: 0.5em;
}