body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

canvas {
    position: absolute;
    outline: none;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.changeButton {
    margin: 0px 10px;
    font-size: 1rem;
    color: #ffff00;
}

.changeColorButton:hover {
    color: #FFA500;
    cursor: pointer;
}

.changeModeButton:hover {
    color: #FFA500;
    cursor: pointer;
}

.description {
    margin-left: 10px;
    color: #067c19;
    font-size: 0.75rem;
}

#shuffle-and-solve {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: center;
    z-index: 10;
    /*background-color: #ffffff;*/
    width: 100%;
    height: 100px;
    bottom: 3%;
}

div .row {
    justify-content: space-around;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    width: 100%;
    height: 25px;
}

#shuffle {
    user-select: none;
    height: 100%;
    width: 150px;
    bottom: 20%;
    left: 25%;
    font-size: 1rem;
    border: 0px;
    border-radius: 30px;
    background-color: #dbe4ff;
}

#solve {
    user-select: none;
    height: 100%;
    width: 150px;
    bottom: 20%;
    left: 65%;
    font-size: 1rem;
    border: 0px;
    border-radius: 30px;
    background-color: #dbe4ff;
}

#resetCam {
    user-select: none;
    height: 100%;
    width: 150px;
    bottom: 10%;
    left: 45%;
    font-size: 1rem;
    border: 0px;
    border-radius: 30px;
    background-color: #dbe4ff;
}

@media only screen and (max-width: 772px) {
    #shuffle-and-solve {
        height: 100px;
        bottom: 4%;
    }
}
