canvas {
    /* border: 1px solid #fff; */
    border: 2px solid #000;
}

body {
    margin: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

p {
    font-family:Arial, Helvetica, sans-serif;
}

.canvasDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
}

.inputDiv {
    display: flex;
    flex-direction: row;
    align-items: left;
    width: 100%;
}

.rangeDiv {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 33%;
}

.rangeDiv > * {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 30px;
    justify-content: right;
    white-space: nowrap;
}

.displayCheckboxDiv {
    display: flex;
    flex-direction: column;
    width: 33%;
    height: 100px;
}

.displayCheckboxDiv > * {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 30px;
}

.buttonDiv {
    display: flex;
    flex-direction: row;
    justify-content: right;
    width: 100%;
}

.buttonDiv > * {
    display: flex;
    justify-content: right;
    height: 60px;
    width: 100%;
}

.resetButton {
    height: 100%;
    width: 70%;
}

.titleDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    width: 100%;
    justify-content: left;
    white-space: nowrap;
}

.titleText {
    font-size: 50px;
}

.subTitleText {
    font-size: 25px;
    color: #00000060;
}