#history{
    overflow-x: scroll;

    display: flex;
    align-items: center;
    gap: 5px;

    cursor: default;
    background-color: rgba(34, 34, 34, 0.4);
}

#history>button{
    all: unset;
    position: relative;
    display: flex;
    gap: 5px;
}

#history>button:hover{
    cursor: pointer;
}
#history .user:hover   {background-color: rgba(173, 216, 230, 0.6);}
#history .shuffle:hover{background-color: rgba(255, 160, 122, 0.6);}
#history .solver:hover {background-color: rgba(144, 238, 144, 0.6);}

#history>button>p{
    font-size: 2em;
    width: 2em;
    text-align: center;
}
#history>button:hover>p{
    background-color: transparent;
}
#history .user    p{background-color: rgba(173, 216, 230, 0.6);}
#history .shuffle p{background-color: rgba(255, 160, 122, 0.6);}
#history .solver  p{background-color: rgba(144, 238, 144, 0.6);}